Skip to content

Commit 9c2687f

Browse files
committed
Added Classic Data Structure practice
1 parent 3f03049 commit 9c2687f

18 files changed

+297
-0
lines changed
881 Bytes
Binary file not shown.
1.64 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
599 Bytes
Binary file not shown.
2.33 KB
Binary file not shown.
1.27 KB
Binary file not shown.
22 Bytes
Binary file not shown.
54 Bytes
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package ClassicDataStructures;
2+
3+
public class BTreeExercise {
4+
5+
6+
public static void main(String[] args) {
7+
BinarySearchTree bst = new BinarySearchTree();
8+
bst.insert(8);
9+
bst.insert(7);
10+
bst.insert(13);
11+
bst.insert(3);
12+
bst.insert(10);
13+
bst.insert(6);
14+
bst.insert(4);
15+
bst.insert(1);
16+
bst.insert(14);
17+
18+
//bst.inOrder();
19+
bst.preOrder();
20+
System.out.println();
21+
System.out.println(bst.min());
22+
System.out.println(bst.max());
23+
24+
25+
}
26+
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
package ClassicDataStructures;
2+
3+
public class BinarySearchTree {
4+
public NodeBinaryTree root;
5+
6+
public BinarySearchTree() {
7+
root = null;
8+
}
9+
10+
public void insert(int data) {
11+
NodeBinaryTree newNode = new NodeBinaryTree();
12+
newNode.data = data;
13+
if (root == null) {
14+
root = newNode;
15+
} else {
16+
NodeBinaryTree current = root;
17+
NodeBinaryTree parent;
18+
while (true) {
19+
parent = current;
20+
if (data < current.data) {
21+
current = current.left;
22+
if (current == null) {
23+
parent.left = newNode;
24+
break;
25+
}
26+
} else {
27+
current = current.right;
28+
if (current == null){
29+
parent.right = newNode;
30+
break;
31+
}
32+
}
33+
}
34+
}
35+
36+
}
37+
38+
public int min()
39+
{
40+
NodeBinaryTree current = root;
41+
while( current.left!= null )
42+
current = current.left;
43+
return current.getData();
44+
}
45+
public int max()
46+
{
47+
NodeBinaryTree current = root;
48+
while( current.right!= null )
49+
current = current.right;
50+
return current.getData();
51+
}
52+
53+
public void inOrder() {
54+
inOrder(root);
55+
}
56+
57+
public void inOrder(NodeBinaryTree root) {
58+
if (root != null) {
59+
inOrder(root.left);
60+
System.out.println(root.getData());
61+
inOrder(root.right);
62+
}
63+
}
64+
65+
public void preOrder() {
66+
preOrder(root);
67+
}
68+
69+
public void preOrder(NodeBinaryTree root) {
70+
if (root != null) {
71+
System.out.println(root.getData());
72+
preOrder(root.left);
73+
preOrder(root.right);
74+
}
75+
}
76+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
package ClassicDataStructures;
2+
3+
import java.util.Stack;
4+
5+
public class ExerciseConvertDecimalToBinary {
6+
7+
static String binary(int number) {
8+
final int base = 2;
9+
Stack digits = new Stack();
10+
do {
11+
digits.push(number % 2);
12+
number /= 2;
13+
} while (number != 0);
14+
15+
String bits = "";
16+
17+
while (!digits.isEmpty()) {
18+
bits += digits.pop();
19+
}
20+
return bits;
21+
22+
}
23+
24+
public static void main(String[] args) {
25+
int num = 5 ; //101
26+
System.out.println(num + " binary is " + binary(num));
27+
28+
}
29+
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
package ClassicDataStructures;
2+
3+
import java.util.LinkedList;
4+
5+
public class LinkedListNameQueue {
6+
public static void main(String[] args) {
7+
LinkedList<String> names = new LinkedList<String>();
8+
names.addLast("Jimmy");
9+
names.addLast("Jolly");
10+
names.addLast("ozzy");
11+
12+
for(String s : names)
13+
System.out.println(s);
14+
15+
System.out.println();
16+
17+
names.removeFirst();
18+
for(String s : names)
19+
System.out.println(s);
20+
21+
System.out.println();
22+
names.addLast("aroma");
23+
for(String s : names)
24+
System.out.println(s);
25+
26+
System.out.println("Size of queue :" + names.size());
27+
28+
if(!names.isEmpty())
29+
names.removeFirst();
30+
31+
System.out.println("Size of queue :" + names.size());
32+
for(String s : names)
33+
System.out.println(s);
34+
35+
}
36+
37+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package ClassicDataStructures;
2+
3+
public class NodeBinaryTree {
4+
int data;
5+
NodeBinaryTree left;
6+
NodeBinaryTree right;
7+
8+
public NodeBinaryTree(int data) {
9+
this.data = data;
10+
left = null;
11+
right = null;
12+
}
13+
14+
public NodeBinaryTree() {
15+
left = null;
16+
right = null;
17+
}
18+
19+
public int getData()
20+
{
21+
return data;
22+
}
23+
24+
}
+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
package ClassicDataStructures;
2+
3+
import java.util.LinkedList;
4+
5+
public class RadixSort {
6+
public static void main(String[] args) {
7+
final int size = 50;
8+
final int numQueues = 10;
9+
LinkedList<Integer>[] digits = new LinkedList[numQueues];
10+
for (int i = 0; i < numQueues; ++i) {
11+
digits[i] = new LinkedList();
12+
}
13+
int numbers[] = new int[50];
14+
for (int i = 0; i < size; ++i) {
15+
numbers[i] = (int) (Math.random() * 100);
16+
}
17+
18+
display(numbers);
19+
Distribute(numbers, digits, "ones");
20+
Collect(digits, numbers);
21+
display(numbers);
22+
23+
Distribute(numbers, digits, "tens");
24+
Collect(digits, numbers);
25+
display(numbers);
26+
27+
}
28+
29+
private static void Collect(LinkedList<Integer>[] digits, int[] numbers) {
30+
int m = 0;
31+
for (int i = 0; i < 10; ++i) {
32+
while (!digits[i].isEmpty())
33+
numbers[m++] = (Integer) digits[i].removeFirst();
34+
}
35+
36+
}
37+
38+
private static void Distribute(int[] numbers, LinkedList<Integer>[] digits,
39+
String digitType) {
40+
for (int i = 0; i < numbers.length; ++i) {
41+
if (digitType.equals("ones"))
42+
digits[numbers[i] % 10].addLast(numbers[i]);
43+
else
44+
digits[numbers[i] / 10].addLast(numbers[i]);
45+
}
46+
}
47+
48+
private static void display(int[] numbers) {
49+
int i = 0;
50+
while (i < numbers.length) {
51+
System.out.print(numbers[i] + " ");
52+
if (++i % 10 == 0)
53+
System.out.println();
54+
}
55+
System.out.println();
56+
57+
}
58+
59+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package ClassicDataStructures;
2+
3+
/*
4+
* Stack is an abstract data structure
5+
* It stores all elements of data type objects
6+
* which is a little inefficient but highly flexible
7+
*/
8+
import java.util.Stack;
9+
10+
public class StackExample {
11+
public static void main(String[] args) {
12+
Stack names = new Stack();
13+
names.push("Jimmy");
14+
names.push("Jolly");
15+
16+
System.out.println("Top of stack is " + names.peek());
17+
18+
names.pop();
19+
System.out.println("Top of stack is " + names.peek());
20+
21+
22+
names.push("ozzy");
23+
System.out.println("Top of stack is " + names.peek());
24+
25+
if(!names.empty()){
26+
System.out.println("Top of stack is " + names.peek());
27+
names.pop();
28+
}
29+
System.out.println("Top of stack is " + names.peek());
30+
names.pop();
31+
32+
33+
if(!names.empty()){
34+
System.out.println("Top of stack is " + names.peek());
35+
}else
36+
System.out.println("Stack empty");
37+
}
38+
39+
}

src/sequentialCollection/AlphaTreeSet.java

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ public static void main(String args[]) {
99
names.add("marshal");
1010
names.add("jolly");
1111
names.add("jimmy");
12+
names.add("aroma");
1213

1314
System.out.println("Number of names: " + names.size());
1415

src/sequentialCollection/NamesHashSet.java

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ public static void main (String args[])
88
HashSet<String> names = new HashSet<String>();
99
names.add("jimmy");
1010
names.add("jolly");
11+
names.add("marshal");
12+
names.add("ozzy");
13+
names.add("jimmy");
14+
names.add("jolly");
1115

1216
System.out.println("The number of names is " + names.size());
1317
for(String s : names)

0 commit comments

Comments
 (0)