Sort List 描述 分析 代码 相关题目 Sort List 描述 Sort a linked list in O(n log n) time using constant space complexity. 分析 常数空间且O(nlogn) ,单链表适合用归并排序,双向链表适合用快速排序。本题可以复用 Merge Two ...
数据类型 数据类型 Erlang 提供了以下数据类型: 常量 数据类型——无法再被分割为更多原始类型的类型: 数值 ——如:123、-789、3.14159、7.8e12、-1.2e-45。数值可进一步分为整数 和浮点数 。 Atom ——如:abc、'An atom with spaces'、monday、green、hello_word。它们都...
Unique Binary Search Trees II 描述 分析 代码 相关题目 Unique Binary Search Trees II 描述 Given n , generate all structurally unique BST's (binary search trees) that store values 1…n....