-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLL2displayandsize.java
More file actions
65 lines (52 loc) · 1.3 KB
/
Copy pathLL2displayandsize.java
File metadata and controls
65 lines (52 loc) · 1.3 KB
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
import java.io.*;
import java.util.*;
public class LL2displayandsize{
public static class Node {
int data;
Node next;
}
public static class LinkedList {
Node head;
Node tail;
int size;
void addLast(int val) {
Node temp = new Node();
temp.data = val;
temp.next = null;
if (size == 0) {
head = tail = temp;
} else {
tail.next = temp;
tail = temp;
}
size++;
}
public int size(){
return size;
}
public void display(){
Node temp= head;
while(temp!=null){
System.out.println(temp.data+" ");
temp=temp.next;
}
System.out.println();
}
}
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
LinkedList list = new LinkedList();
String str = br.readLine();
while(str.equals("quit") == false){
if(str.startsWith("addLast")){
int val = Integer.parseInt(str.split(" ")[1]);
list.addLast(val);
} else if(str.startsWith("size")){
System.out.println(list.size());
} else if(str.startsWith("display")){
list.display();
}
str = br.readLine();
}
}
}