-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathRemove_duplicate.java
75 lines (72 loc) · 1.5 KB
/
Remove_duplicate.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
import java.util.*;
class Node
{
int data;
Node next;
Node(int d) {data = d; next = null; }
}
class Remove_Duplicate_From_LL
{
Node head;
Node tail;
public void addToTheLast(Node node)
{
if (head == null)
{
head = node;
tail = node;
}
else
{
tail.next = node;
tail = node;
}
}
void printList()
{
Node temp = head;
while (temp != null)
{
System.out.print(temp.data+" ");
temp = temp.next;
}
System.out.println();
}
/* Drier program to test above functions */
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
int t=sc.nextInt();
while(t>0)
{
int n = sc.nextInt();
Remove_Duplicate_From_LL llist = new Remove_Duplicate_From_LL();
int a1=sc.nextInt();
Node head= new Node(a1);
llist.addToTheLast(head);
for (int i = 1; i < n; i++)
{
int a = sc.nextInt();
llist.addToTheLast(new Node(a));
}
GfG g = new GfG();
llist.head = g.removeDuplicates(llist.head);
llist.printList();
t--;
}
}
}
class GfG{
Node removeDuplicates(Node root){
Node curr = root;
while(curr != null){
Node temp = curr;
while( temp != null && temp.data == curr.data ){
temp = temp.next;
}
curr.next = temp;
curr = curr.next;
}
return root;
}
}