书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 11138 个相关结果.
  • Appendix A: Smaller Changes

    Appendix A: Smaller Changes Appendix A: Smaller Changes Along with the major changes this book has already covered, ECMAScript 6 made several other changes that are smaller but...
  • 3Sum Smaller

    3Sum Smaller 3Sum Smaller Given an array of n integers nums and a target, find the number of index triplets i, j, k with 0 <= i < j < k < n that satisfy the condition nums[i]...
  • Count of Smaller Numbers After Self

    Count of Smaller Numbers After Self Count of Smaller Numbers After Self You are given an integer array nums and you have to return a new counts array. The counts array has the ...
  • 8.10. Prefer smaller Docker base images

    Prefer smaller Docker base images Blog Quote: “If you want to shrink your Docker images, have your services start faster and be more secure then try Alpine out.” Prefer smalle...
  • 非平衡二叉树

    非平衡二叉树 非平衡二叉树 字典适合保存少量的数据项,但是当项的数量不断增加,更好的方法是用通过使用键的序列关系来访问数据的树形结构来组织数据。这种结构的访问时间与它所包含的项的数量成对数关系–列表是线性的访问时间。 我们认为最简单的树组织形式是非平衡二叉树 。树内部的结点用{Key,Vlue,Smaller,Bigger}来表示。Value是被存...
  • 平衡二叉树

    平衡二叉树 平衡二叉树 在前面几节里,我们学会了怎样构建一棵非平衡二叉树。但不幸的是非平衡二叉树可能会变成一个列表,这样对树的插入和删除操作就是非随机的了。 一个更好的方法是保持树在任何情况下都是平衡 的。 Adelsom-Velskii和Landis [?](在[?]中描述)使用一个简单的标准来衡量平衡 这个概念:如果一棵树的每个结点的两个子树...
  • 示例

    示例 sort 集合 素数 示例 在以下章节中我们将给出一些稍微复杂一些的列表处理函数的使用示例。 sort 程序3.1是著名的快速排序的一个变体。sort(X)对列表X的元素排序,将结果放入一个新列表并将之返回。 程序3.1 - module ( sort ). - export ([ sort / 1 ]).   sort ...
  • Conditional

    Conditional Functions if Ternary Operator multiIf Using Conditional Results Directly NULL Values in Conditionals Conditional Functions if Controls conditional branching....