-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdll.java
More file actions
101 lines (100 loc) · 2.38 KB
/
Copy pathdll.java
File metadata and controls
101 lines (100 loc) · 2.38 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
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
import java.util.*;
public class dob
{
class node
{
int data;
node previous;
node next;
public node(int data)
{
this.data=data;
}
}
node head,tail=null;
public void addNode(int data)
{
node newnode=new node(data);
if(head==null)
{
head=tail=newnode;
newnode.previous=null;
newnode.next=null;
}
else
{
tail.next=newnode;
newnode.previous=tail;
tail=newnode;
}
}
public void delete(int data)
{
node curr=head;
if(head==null)
{
System.out.println("list is empty");
}
else if(curr.data==data)
{
head=curr.next;
curr.next.previous=null;
}
else
{
while(curr.data!=data)
{
curr=curr.next;
}
if(curr.next==null)
{
tail=tail.previous;
tail.next=null;
}
else
{
curr.previous.next=curr.next;
curr.next.previous=curr.previous;
}
}
}
public void display()
{
node temp=head;
if(head==null)
{
System.out.println("list is empty");
}
while(temp!=null)
{
System.out.print(temp.data+" -> ");
temp=temp.next;
}
System.out.println();
}
public static void main(String args[])
{
dob oj=new dob();
System.out.println(" 1) Add a Node\n 2) Delete a Node 3) Display a Node");
Scanner ob=new Scanner(System.in);
while(true)
{
System.out.println("enter ur choice");
int num=ob.nextInt();
switch(num)
{
case 1:System.out.println("enter the data");
int data2=ob.nextInt();
oj.addNode(data2);
break;
case 2: System.out.println("enter the data to be deleted");
int data1=ob.nextInt();
oj.delete(data1);
break;
case 3 :oj.display();
break;
case 4 :System.exit(0);
}
}
}
}