Skip to content

Commit 7e9404c

Browse files
authoredMar 25, 2023
Add files via upload
1 parent 028f88a commit 7e9404c

37 files changed

+1630
-0
lines changed
 

‎Accounting.txt

Whitespace-only changes.

‎Biology.txt

Whitespace-only changes.

‎Chemistry.txt

Whitespace-only changes.

‎Computer_Science.txt

Whitespace-only changes.

‎Economics.txt

Whitespace-only changes.

‎Electrical.txt

Whitespace-only changes.

‎Geography.txt

Whitespace-only changes.

‎History.txt

Whitespace-only changes.

‎Languages.txt

Whitespace-only changes.

‎Law.txt

Whitespace-only changes.

‎Media.txt

Whitespace-only changes.

‎Nursing.txt

Whitespace-only changes.

‎Physics.txt

Whitespace-only changes.

‎bin/application/AVL.class

3.08 KB
Binary file not shown.

‎bin/application/BST.class

5.98 KB
Binary file not shown.

‎bin/application/Department.class

2.1 KB
Binary file not shown.

‎bin/application/HNode.class

1.45 KB
Binary file not shown.

‎bin/application/Hash.class

5.08 KB
Binary file not shown.

‎bin/application/Main.class

26.3 KB
Binary file not shown.

‎bin/application/Student.class

2.03 KB
Binary file not shown.

‎bin/application/TNode.class

1.83 KB
Binary file not shown.

‎bin/application/application.css

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* JavaFX CSS - Leave this comment until you have at least create one rule which uses -fx-Property */

‎bin/departments.txt

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Lang / Languages.txt
2+
Geog / Geography.txt
3+
Hist / History.txt
4+
Media / Media.txt
5+
Acc / Accounting.txt
6+
Econ / Economics.txt
7+
Biol / Biology.txt
8+
Chem / Chemistry.txt
9+
Phys / Physics.txt
10+
Law / Law.txt
11+
Nurs / Nursing.txt
12+
CS / Computer_Science.txt
13+
Elec / Electrical.txt

‎bin/module-info.class

245 Bytes
Binary file not shown.

‎build.fxbuild

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="ASCII"?>
2+
<anttasks:AntTask xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:anttasks="http://org.eclipse.fx.ide.jdt/1.0" buildDirectory="${project}/build">
3+
<deploy>
4+
<application name="project3"/>
5+
<info/>
6+
</deploy>
7+
<signjar/>
8+
</anttasks:AntTask>

‎departments.txt

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Lang / Languages.txt
2+
Geog / Geography.txt
3+
Hist / History.txt
4+
Media / Media.txt
5+
Acc / Accounting.txt
6+
Econ / Economics.txt
7+
Biol / Biology.txt
8+
Chem / Chemistry.txt
9+
Phys / Physics.txt
10+
Law / Law.txt
11+
Nurs / Nursing.txt
12+
CS / Computer_Science.txt
13+
Elec / Electrical.txt

‎src/application/AVL.java

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
package application;
2+
3+
public class AVL<T extends Comparable<T>> extends BST<T> {
4+
5+
private TNode rebalance(TNode nodeN) {
6+
int diff = getHeightDifference(nodeN);
7+
if (diff > 1) { // addition was in node's left subtree
8+
if (getHeightDifference(nodeN.left) > 0)
9+
nodeN = rotateRight(nodeN);
10+
else
11+
nodeN = rotateLeftRight(nodeN);
12+
} else if (diff < -1) { // addition was in node's right subtree
13+
if (getHeightDifference(nodeN.right) < 0)
14+
nodeN = rotateLeft(nodeN);
15+
else
16+
nodeN = rotateRightLeft(nodeN);
17+
}
18+
return nodeN;
19+
}
20+
21+
public void insert(T data) {
22+
if (isEmpty())
23+
root = new TNode<>(data);
24+
else {
25+
TNode rootNode = root;
26+
addEntry(data, rootNode);
27+
root = rebalance(rootNode);
28+
}
29+
}
30+
31+
public void addEntry(T data, TNode rootNode) {
32+
assert rootNode != null;
33+
if (data.compareTo((T) rootNode.data) < 0) { // right into left subtree
34+
if (rootNode.hasLeft()) {
35+
TNode leftChild = rootNode.left;
36+
addEntry(data, leftChild);
37+
rootNode.left = rebalance(leftChild);
38+
} else
39+
rootNode.left = new TNode(data);
40+
} else { // right into right subtree
41+
if (rootNode.hasRight()) {
42+
TNode rightChild = rootNode.right;
43+
addEntry(data, rightChild);
44+
rootNode.right = rebalance(rightChild);
45+
} else
46+
rootNode.right = new TNode(data);
47+
}
48+
}
49+
public TNode delete(T data) {
50+
TNode temp = super.delete(data);
51+
if (temp != null) {
52+
TNode rootNode = root;
53+
root = rebalance(rootNode);
54+
}
55+
return temp;
56+
}
57+
58+
public int height(TNode node) {
59+
if (node == null)
60+
return 0;
61+
return 1 + Math.max(height(node.left), height(node.right));
62+
}
63+
64+
public int getHeightDifference(TNode root) {
65+
return height(root.left) - height(root.right);
66+
}
67+
68+
private TNode rotateRight(TNode root) {
69+
TNode c = root.left;
70+
root.left = c.right;
71+
c.right = root;
72+
return c;
73+
}
74+
75+
private TNode rotateLeft(TNode root) {
76+
TNode c = root.right;
77+
root.right = c.left;
78+
c.left = root;
79+
return c;
80+
}
81+
82+
83+
84+
private TNode rotateRightLeft(TNode root) {
85+
TNode c = root.right;
86+
root.right = rotateRight(c);
87+
return rotateLeft(root);
88+
}
89+
90+
private TNode rotateLeftRight(TNode root) {
91+
TNode c = root.left;
92+
root.left = rotateLeft(c);
93+
return rotateRight(root);
94+
}
95+
}

‎src/application/BST.java

+252
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,252 @@
1+
package application;
2+
3+
public class BST<T extends Comparable<T>> {
4+
5+
protected TNode<T> root;
6+
7+
public BST() {
8+
}
9+
10+
public T find(T data) {
11+
return find(data, root);
12+
}
13+
14+
public T find(T data, TNode node) {
15+
if (node != null) {
16+
int comp = node.data.compareTo(data);
17+
if (comp == 0)
18+
return (T) node.getData();
19+
else if (comp > 0 && node.hasLeft())
20+
return find(data, node.left);
21+
else if (comp < 0 && node.hasRight())
22+
return find(data, node.right);
23+
}
24+
return null;
25+
}
26+
27+
public TNode largest() {
28+
return largest(root);
29+
}
30+
31+
public TNode<T> largest(TNode node) {
32+
if (node != null) {
33+
if (!node.hasRight())
34+
return (node);
35+
return largest(node.right);
36+
}
37+
return null;
38+
}
39+
40+
public TNode smallest() {
41+
return smallest(root);
42+
}
43+
44+
public TNode<T> smallest(TNode node) {
45+
if (node != null) {
46+
if (!node.hasLeft())
47+
return (node);
48+
return smallest(node.left);
49+
}
50+
return null;
51+
}
52+
53+
public int height() {
54+
return height(root);
55+
}
56+
57+
public int height(TNode node) {
58+
if (node == null)
59+
return 0;
60+
if (node.isLeaf())
61+
return 1;
62+
int left = 0;
63+
int right = 0;
64+
if (node.hasLeft())
65+
left = height(node.left);
66+
if (node.hasRight())
67+
right = height(node.right);
68+
return (left > right) ? (left + 1) : (right + 1);
69+
}
70+
71+
public void insert(T data) {
72+
if (isEmpty())
73+
root = new TNode(data);
74+
else {
75+
if (find(data) != null) {
76+
System.out.println("This item is already exists");
77+
return;
78+
} else
79+
insert(data, root);
80+
}
81+
}
82+
83+
private void insert(T data, TNode node) {
84+
if (data.compareTo((T) node.data) >= 0) { // insert into right subtree
85+
if (!node.hasRight())
86+
node.right = new TNode(data);
87+
else
88+
insert(data, node.right);
89+
} else { // insert into left subtree
90+
if (!node.hasLeft())
91+
node.left = new TNode(data);
92+
else
93+
insert(data, node.left);
94+
}
95+
}
96+
97+
public boolean isEmpty() {
98+
if (root != null)
99+
return false;
100+
else
101+
return true;
102+
}
103+
104+
public TNode delete(T data) {
105+
TNode current = root;
106+
TNode parent = root;
107+
boolean isLeftChild = false;
108+
if (isEmpty())
109+
return null; // tree is empty
110+
while (current != null && !current.data.equals(data)) {
111+
parent = current;
112+
if (data.compareTo((T) current.data) < 0) {
113+
current = current.left;
114+
isLeftChild = true;
115+
} else {
116+
current = current.right;
117+
isLeftChild = false;
118+
}
119+
}
120+
if (current == null)
121+
return null; // node to be deleted not found
122+
// case 1: node is a leaf
123+
if (!current.hasLeft() && !current.hasRight()) {
124+
if (current == root) // tree has one node
125+
root = null;
126+
else {
127+
if (isLeftChild)
128+
parent.left = null;
129+
else
130+
parent.right = null;
131+
}
132+
} else if (current.hasLeft()) { // current has left child only
133+
if (current == root) {
134+
root = current.left;
135+
} else if (isLeftChild) {
136+
parent.left = current.left;
137+
} else {
138+
parent.right = current.left;
139+
}
140+
} else if (current.hasRight()) { // current has right child only
141+
if (current == root) {
142+
root = current.right;
143+
} else if (isLeftChild) {
144+
parent.left = current.right;
145+
} else {
146+
parent.right = current.right;
147+
}
148+
} else {
149+
TNode successor = getSuccessor(current);
150+
if (current == root)
151+
root = successor;
152+
else if (isLeftChild) {
153+
parent.left = successor;
154+
} else {
155+
parent.right = successor;
156+
}
157+
successor.left = current.left;
158+
}
159+
return current;
160+
}
161+
162+
163+
private TNode getSuccessor(TNode node) {
164+
TNode parentOfSuccessor = node;
165+
TNode successor = node;
166+
TNode current = node.right;
167+
while (current != null) {
168+
parentOfSuccessor = successor;
169+
successor = current;
170+
current = current.left;
171+
}
172+
if (successor != node.right) { // fix successor connections
173+
parentOfSuccessor.left = successor.right;
174+
successor.right = node.right;
175+
}
176+
return successor;
177+
}
178+
179+
public void traverseInOrder() {
180+
traverseInOrder(root);
181+
}
182+
183+
public int count() {
184+
if (root != null)
185+
return count(root, 0);
186+
else
187+
return 0;
188+
}
189+
190+
private int count(TNode node, int count) {
191+
if (node != null) {
192+
count++;
193+
if (node.getLeft() != null)
194+
count = count(node.getLeft(), count);
195+
if (node.getRight() != null)
196+
count = count(node.getRight(), count);
197+
} else {
198+
return 0;
199+
}
200+
return count;
201+
}
202+
203+
public int countLeafes() {
204+
return countLeafes(root, 0);
205+
}
206+
207+
private int countLeafes(TNode node, int count) {
208+
if (node != null) {
209+
if (!node.isLeaf()) {
210+
count = countLeafes(node.getLeft(), count);
211+
count = countLeafes(node.getRight(), count);
212+
} else {
213+
return 1 + count;
214+
}
215+
} else {
216+
return 0;
217+
}
218+
return count;
219+
}
220+
221+
private String s = "";
222+
223+
private void traverseInOrder(TNode node) {
224+
if (node != null) {
225+
if (node.getLeft() != null) {
226+
traverseInOrder(node.getLeft());
227+
}
228+
s += node.getData() + "\n";
229+
System.out.print(node.getData() + " ");
230+
if (node.getRight() != null) {
231+
traverseInOrder(node.getRight());
232+
}
233+
}
234+
}
235+
236+
public String toStringInorder() {
237+
return toStringInorder(root);
238+
}
239+
240+
private String toStringInorder(TNode<T> root) {
241+
String s = "";
242+
if (root == null) {
243+
return "";
244+
}
245+
246+
s += toStringInorder(root.left);
247+
s += root.toString()+"\n";
248+
s += toStringInorder(root.right);
249+
return s;
250+
}
251+
252+
}

0 commit comments

Comments
 (0)
Please sign in to comment.