-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.java
294 lines (290 loc) · 8.43 KB
/
Main.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
package com.company;
import java.util.*;
public class Main {
public static void main(String[] args) {
// write your code here
Scanner read = new Scanner(System.in);
System.out.println("List One : ");
singlylist listone = new singlylist();
ask(listone, read);
System.out.println("List Two : ");
singlylist listtwo = new singlylist();
ask(listtwo, read);
System.out.println("Do You Want To Merge the List: 1. Sorted 2. Unsorted : ");
int sortchoice = read.nextInt();
if (sortchoice == 2) {
System.out.println("Unsorted Merged List : ");
ask(mergelists(listone, listtwo), read);
}
else{
System.out.println("Sorted Merged List : ");
ask(mergesorted(listone, listtwo), read);
}
}
public static void ask(singlylist maxlist, Scanner read){
boolean flag = true;
while(flag == true) {
int choice;
System.out.println("1. Insert Elements together\n2. Insert by Position\n3. Delete by Position" +
"\n4. Delete by Key\n5. Print List\n6. Greatest Element\n7.Get from front\n8.Get From Last" +
"\n9.Reverse List\n10.Remove Duplicates\n11.Size\n12.Exit");
choice = read.nextInt();
switch(choice) {
case 1 :
maxlist.inserttogether(read);
break;
case 2 :
System.out.print("Value & Position: ");
int a = read.nextInt();
int b = read.nextInt();
maxlist.insert(a,b);
break;
case 3 :
System.out.print("Position: ");
int c = read.nextInt();
maxlist.deletebypos(c);
break;
case 4 :
System.out.println("Key: ");
int d = read.nextInt();
maxlist.deletebykey(d);
break;
case 5 :
maxlist.printlist();
break;
case 6 :
int e;
int j = 0;
for(e = maxlist.get(j); j < maxlist.sizelist(); j++){
if(maxlist.get(j) > e){
e = maxlist.get(j);
}
}
System.out.println("The greatest is " + e);
break;
case 7 :
System.out.print("Enter Index: ");
int g = read.nextInt();
System.out.println("Value: "+ maxlist.get(g));
break;
case 8 :
System.out.print("Position from last: ");
int f = read.nextInt();
System.out.println("Value : " + maxlist.getfromlast(f));
break;
case 9 :
maxlist.reverselist();
break;
case 10 :
maxlist.removeduplicates();
break;
case 11 :
System.out.println("The Size of List = "+ maxlist.sizelist());
break;
case 12:
flag = false;
break;
default:
System.out.println("Invalid Choice");
}
}
}
public static singlylist mergelists(singlylist one, singlylist two){
singlylist listthree = new singlylist();
insertlist(one,listthree);
insertlist(two,listthree);
return listthree;
}
public static singlylist mergesorted(singlylist one, singlylist two){
singlylist listthree = new singlylist();
int i = 0;
int j = 0;
while(one.get(i) != -1){
if(one.get(i) < two.get(j)){
listthree.insert(one.get(i));
i++;
}
else if(one.get(i) == two.get(j)){
listthree.insert(one.get(i));
listthree.insert(one.get(i));
i++;
j++;
}
else{
while(one.get(i) > two.get(j)){
listthree.insert((two.get(j)));
j++;
}
}
}
return listthree;
}
public static void insertlist(singlylist one, singlylist two){
int i = 0;
while(one.get(i) != -1){
two.insert(one.get(i));
i++;
}
}
}
class singlylist{
Node front, rear;
class Node{
int data;
Node next;
Node(int d){
data = d;
next = null;
}
}
singlylist(){
front = rear = null;
}
void insert(int a){
Node innode = new Node(a);
if(front == null){
front = innode;
rear = innode;
}
else{
rear.next = innode;
rear = innode;
}
}
void inserttogether(Scanner read){
for(int i = 0;i != -1 ;){
i = read.nextInt();
if(i != -1)
insert(i);
}
}
void insert(int j, int pos){
Node n = new Node(j);
if(pos == 0){
n.next = front;
front = n;
if(front == null)
rear = n;
}
else if(pos >= sizelist()){
rear.next = n;
rear = n;
}
else{
Node a = front;
for(int i = 1; i < pos; i++){
a = a.next;
}
Node b = a.next;
a.next = n;
n.next = b;
}
}
int get(int n) {
Node a = front;
if (n >= sizelist())
return -1;
else {
for (int i = 0; i < n; i++) {
a = a.next;
}
return a.data;
}
}
int sizelist(){
int i = 0;
Node n = front;
while(n!= null){
n= n.next;
i++;
}
return i;
}
void printlist(){
Node n = front;
while(n!= null){
System.out.print(n.data +" ");
n= n.next;
}
System.out.println( );
}
void deletebykey(int d){
boolean flag = false;
if(front.data == d)
front = front.next;
else {
Node n = front;
while (n != null) {
if (n.next.data == d) {
flag = true;
break;
}
n = n.next;
}
if(false)
System.out.println("Key Not Found");
else
n.next = n.next.next;
}
}
void deletebypos(int d){
if(d == 0)
front = front.next;
else {
int i = 1;
Node n = front;
while (n != null) {
if (i == d) {
n.next = n.next.next;
break;
}
n = n.next;
i++;
}
}
}
int getfromlast(int d){
if(d <= sizelist() && d > 0) {
Node n = front;
Node m = front;
for (int i = 0; i < d; i++) {
n = n.next;
}
while (n != null) {
n = n.next;
m = m.next;
}
return m.data;
} else
return -1;
}
void reverselist(){
rear = front;
Node n = front.next;
Node m = n.next;
n.next = front;
n.next = rear;
front.next = null;
front = n;
while(m != null){
n = m.next;
m.next = front;
front = m;
m = n;
}
}
void removeduplicates(){
Node n = front;
int i = 0;
while(n.next != null){
if(n.data == n.next.data){
n = n.next;
deletebypos(i);
}
else{
n = n.next;
i++;
}
}
}
}