-
Notifications
You must be signed in to change notification settings - Fork 45
/
linklist.java
134 lines (123 loc) · 3.33 KB
/
linklist.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import java.util.Scanner;
class node{
int data;
node next;
node(int d){
data = d;
next = null;
}
}
class link{
node head;
void insert(int d){
node newnode = new node(d);
newnode.next = head;
head = newnode;
}
void insert(int key, int d){
node newnode = new node(d);
node ptr = head;
while(ptr!=null){
if(ptr.data==key){
newnode.next = ptr.next;
ptr.next = newnode;
}
ptr = ptr.next;
}
}
void insertlast(int d){
node newnode = new node(d);
if(head==null){
head = newnode;
return;
}
node ptr = head;
while(ptr.next!=null){
ptr = ptr.next;
}
ptr.next = newnode;
}
void display(){
if(head==null){
System.out.println("__Empty list__");
return;
}
node ptr = head;
System.out.println("Lidt data: ");
while(ptr!=null){
if(ptr.next!=null){
System.out.print(ptr.data+"-->");
}else{
System.out.print(ptr.data);
}
ptr = ptr.next;
}
}
void delete(){
if(head!=null){
head = head.next;
System.out.println("Firt element is deleted");
return;
}else{
System.out.println("__Empty list__");
}
}
void delete(int nodedata){
if(head.data==nodedata){
head = head.next;
System.out.println("Deleted.");
return;
}
node ptr = head;
while(ptr!=null){
if(ptr.next.data==nodedata){
ptr.next = ptr.next.next;
return;
}
ptr = ptr.next;
}
}
}
public class linklist{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
link list = new link();
int opt,data;
do{
System.out.println("\n1.Insert at beginning\n2.Insert after a key\n3.Insert last\n4.Delete at beginning\n5.Delete a specific element\n6.Display\n7.Exit");
System.out.println("Enter you option:");
opt = sc.nextInt();
switch(opt){
case 1:
System.out.println("Enter node value: ");
data = sc.nextInt();
list.insert(data);
break;
case 2:
System.out.println("Enter key and node value: ");
int key = sc.nextInt();
data = sc.nextInt();
list.insert(key, data);
break;
case 3:
System.out.println("Enter node value: ");
data = sc.nextInt();
list.insertlast(data);
break;
case 4:
list.delete();
break;
case 5:
System.out.println("Enter value of node to delete: ");
data = sc.nextInt();
list.delete(data);
break;
case 6:
list.display();
break;
default:
System.out.println("!!!INVALID OPTION!!!");
}
}while(opt!=7);
}
}