-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2bckk_AN.java
106 lines (85 loc) · 2.5 KB
/
2bckk_AN.java
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
code from http://collabedit.com/2bckk
You are given a BST, print the numbers in a sorted order.
public static printTree(Tree tree) {
if (tree != null) {
printTree(tree.left);
System.out.println(tree.getData());
printTree(tree.right)
}
return;
}
Linked lists - finding loops, finding middle node
class Node {
protected int data;
protected Node next;
protected node previous;
// denotes if this node is a head node of a list
protected bool head = false;
// the number of nodes in this list, if the node is a head node
protected int count = 0;
}
// returns true if the list has a loop
public static bool hasLoop(Node node) {
// increment first pointer by one and second by two at a time
// if there's a loop, they'll meet at some point, if not, one will reach the end
if(node == null) {
return node;
}
Node firstPointer = node;
Node secondPointer = node;
while(true) {
if(secondPointer.next != null) {
secondPointer = secondPointer.next.next;
firstPointer = firstPointer.next;
if(firstPointer == secondPointer) {
// pointers have met, loop
return true;
}
} else {
// end reached, no loop
return false;
}
}
}
public static Node findMiddleNode2(Node node) {
if(node == null) {
return node;
}
Node firstPointer = node;
Node secondPointer = node;
while(node != null) {
// increment forst pointer by one and second by two at a time
// when the second pointer reaches the end, the first would be at the middle
if(secondPointer.next != null) {
secondPointer = secondPointer.next.next;
firstPointer = firstPointer.next;
} else {
return firstPointer;
}
}
}
public static Node findMiddleNode1(Node node) {
if(node == null) {
return node;
}
int listCount = 0;
Node start = node;
while (node != null) {
listCount++;
node = node.next;
}
int middleIndex;
if(listCount % 2 == 0) {
middleIndex = listCount /2;
} else {
middleIndex = (listCount + 1) / 2;
}
listCount = 0;
while (node != null) {
listCount++;
node = node.next;
if(listCount == middleIndex) {
return node;
}
}
}