-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeaderList.java
136 lines (116 loc) · 2.23 KB
/
HeaderList.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
/*
Copyright (C) Deepali Srivastava - All Rights Reserved
This code is part of DSA course available on CourseGalaxy.com
*/
package HeaderList;
import java.util.Scanner;
public class HeaderList
{
private Node head;
public HeaderList()
{
head=new Node(0);
}
public void displayList()
{
if(head.link==null)
{
System.out.println("List is empty\n");
return;
}
Node p=head.link;
System.out.println("List is :\n");
while(p!=null)
{
System.out.println(p.info + " ");
p=p.link;
}
System.out.println();
}/*End of displayList()*/
public void insertAtEnd(int data)
{
Node temp = new Node(data);
Node p=head;
while(p.link!=null)
p=p.link;
p.link=temp;
temp.link=null;
}/*End of insertAtEnd()*/
public void createList()
{
int i,n,data;
Scanner scan = new Scanner(System.in);
System.out.println("Enter the number of nodes : ");
n=scan.nextInt();
for(i=1; i<=n; i++)
{
System.out.println("Enter the element to be inserted : ");
data=scan.nextInt();
insertAtEnd(data);
}
}/*End of createList()*/
public void insertBefore(int data,int x)
{
Node temp;
/*Find pointer to predecessor of node containing x*/
Node p=head;
while(p.link!=null)
{
if(p.link.info==x)
break;
p=p.link;
}
if(p.link==null)
System.out.println(x + " not present in the list");
else
{
temp=new Node(data);
temp.link=p.link;
p.link=temp;
}
}/*End of insertBefore()*/
public void insertAtPosition(int data,int k)
{
Node temp;
int i;
Node p=head;
for(i=1; i<=k-1 && p!=null; i++)
p=p.link;
if(p==null)
System.out.println("You can insert only upto " + (i-1) + "th position\n\n");
else
{
temp=new Node(data);
temp.link=p.link;
p.link=temp;
}
}/*End of insertAtPosition()*/
public void deleteNode(int data)
{
Node p=head;
while(p.link!=null)
{
if(p.link.info==data)
break;
p=p.link;
}
if(p.link==null)
System.out.println(data + "Element %d not found");
else
p.link = p.link.link;
}/*End of deleteNode()*/
public void reverse()
{
Node prev, p, next;
prev=null;
p=head.link;
while(p!=null)
{
next=p.link;
p.link=prev;
prev=p;
p=next;
}
head.link=prev;
}/*End of reverse()*/
}