-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbfs.js
56 lines (52 loc) · 1.29 KB
/
bfs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// var sortedArrayToBST = function(nums) {
// function sort(nums, parent, side) {
// const middleInx = Math.floor(nums.length / 2);
// const node = new TreeNode(nums[middleInx]);
// if (parent && side) {
// parent[side] = node;
// }
// if (middleInx > 0) {
// sort(nums.slice(0, middleInx), node, 'left');
// }
// if (nums.length > middleInx + 1) {
// sort(nums.slice(middleInx + 1, nums.length), node, 'right');
// }
// return node;
// }
// return sort(nums);
// };
// function TreeNode(val) {
// this.val = val;
// this.left = this.right = null;
// }
// // console.log(sortedArrayToBST([-10,-3,0,5,9]))
// const bfs = tree => {
// const visit = [];
// const visited = [];
// visit.push(tree);
// while (visit.length) {
// const node = visit.shift();
// if(node) {
// visited.push(node.val);
// visit.push(node.left);
// visit.push(node.right);
// } else {
// visited.push(null);
// }
// }
// return visited
// };
// const result = bfs({
// val: 0,
// right: {
// val: 9,
// right: null,
// left: { val: 5, right: null, left: null },
// },
// left: {
// val: -3,
// right: null,
// left: { val: -10, right: null, left: null },
// },
// });
// console.log(result)