-
Notifications
You must be signed in to change notification settings - Fork 37
/
LinkedListMain.java
46 lines (36 loc) · 1 KB
/
LinkedListMain.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
package LinkedList;
public class LinkedListMain {
public static void main(String[] args) {
LinkedList list = new LinkedList();
// list.insertFirst("Mohini");
// list.insertFirst("Mohit");
// list.display();
//
// list.insertLast("Shobit");
// list.display();
//
// list.insert("Kunal",0 );
// list.insert("Apoorv",0 );
// list.insert("Rahul",1 );
//
////
// list.insertFirst("Kunal");
// list.insertFirst("Kunal");
// list.insertFirst("Rahul");
// list.insertFirst("Rahul");
//
// list.duplicates();
list.insertLast("Bhanu");
list.insertLast("Amit");
list.insertLast("Girja");
LinkedList list2 = new LinkedList();
list2.insertLast("Anuj");
list2.insertLast("Happy");
list2.insertLast("Manoj");
// LinkedList m = LinkedList.merge(list, list2);
// m.display();
list.bubbleSort();
list.display();
// list2.display();
}
}