-
Notifications
You must be signed in to change notification settings - Fork 0
/
Linklist.java
97 lines (85 loc) · 1.38 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
import java.util.Scanner;
class Node
{
int data;
Node next;
}
public class Linklist {
Node head=null;
public void add(int x)
{
Scanner sc=new Scanner(System.in);
Node p=new Node();
p.data=x;
p.next=null;
if(head == null)
{
head=p;
}
else
{
Node q=head;
while(q.next != null)
{
q=q.next;
}
q.next=p;
}
}
public void insert(int a)
{
Scanner sc=new Scanner(System.in);
Node p=new Node();
p.data=a;
p.next=null;
System.out.println("enter the position");
int x=sc.nextInt();
Node q=head;
int c=1;
while(c<(x-1))
{
c++;
q=q.next;
}
p.next=q.next;
q.next=p;
}
public void reverse()
{
Node prev=null;
Node next=null;
Node current=head;
while(current != null)
{
next=current.next;
current.next=prev;
prev=current;
current=next;
}
head=prev;
}
public void show()
{
Node s=head;
while(s != null)
{
System.out.println(s.data);
s=s.next;
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc=new Scanner(System.in);
System.out.println("enter the element");
Linklist list=new Linklist();
for(int i=0;i<5;i++)
{
int a=sc.nextInt();
list.add(a);
}
list.reverse();
list.show();
list.insert(10);
list.show();
}
}