摘要:
快速排序过程数据演示: 阅读全文
摘要:
function CArray(numElements) { this.dataStore = []; this.numElements = numElements; this.prints = prints; this.setData = setData; this.bubbleSort = bubbleS... 阅读全文
摘要:
function Node(data, left, right) { this.data = data; this.count = 1; this.left = left; this.right = right; this.show = show; } function show() { ... 阅读全文
摘要:
function Node(data, left, right) { this.data = data; this.left = left; this.right = right; this.show = show; } function show() { return this.data; ... 阅读全文
摘要:
二叉树和二叉查找树的区别: 二叉树:每个节点的子节点不允许超过两个。 二叉查找树:每个节点的子节点不允许超过两个,同时相对较小的值保存在左节点中, 较大的值保存在右节点中。 关于中序、前序、后序遍历的理解: 以从整体角度到分支的角度进行考虑,假设一个小的二叉查找树有三个节点,父节点、左子节点、右子节 阅读全文