-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMSinLL.java
More file actions
116 lines (116 loc) · 2.93 KB
/
Copy pathMSinLL.java
File metadata and controls
116 lines (116 loc) · 2.93 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
public class MSinLL{
public static class Node{
int data;
Node next;
public Node(int data){
this.data=data;
this.next=null;
}
}
public static Node head;
public static Node tail;
public static void main(String args[]){
MSinLL ll=new MSinLL();
ll.addFirst(5);
ll.addFirst(4);
ll.addFirst(3);
ll.addFirst(2);
ll.addFirst(1);
ll.printLinkedList();
// ll.head=ll.mergSort(ll.head);
ll.zigZag();
ll.printLinkedList();
}
public Node mergSort(Node head){
if(head==null || head.next==null){
return head;
}
// find mid node
Node mid=getMid(head);
Node rightHead=mid.next;
mid.next=null;
Node newLeft=mergSort(head);
Node newRight=mergSort(rightHead);
// merging
return merge(newLeft,newRight);
}
public Node getMid(Node head){
Node slow=head;
Node fast=head.next;
while(fast!=null && fast.next != null){
slow=slow.next;
fast=fast.next.next;
}
return slow;
}
public Node merge(Node head1,Node head2){
Node mergeLL=new Node(-1);
Node temp=mergeLL;
while(head1!=null && head2!=null){
if(head1.data<=head2.data){
temp.next=head1;
head1=head1.next;
temp=temp.next;
}else{
temp.next=head2;
head2=head2.next;
temp=temp.next;
}
}
while(head1!=null){
temp.next=head1;
head1=head1.next;
temp=temp.next;
}
while(head2!=null){
temp.next=head2;
head2=head2.next;
temp=temp.next;
}
return mergeLL.next;
}
public void printLinkedList(){
Node temp=head;
while(temp!=null){
System.out.print(temp.data+"->");
temp=temp.next;
}
System.out.println("null");
}
public void addFirst(int data){
Node newNode= new Node(data);
if(head==null){
head=tail=newNode;
return;
}
newNode.next=head;
head=newNode;
}
public void zigZag(){
// find mid Node
Node mid=getMid(head);
// reverse 2nd half
Node curr=mid.next;
mid.next=null;
Node prev=null;
Node next;
while(curr !=null){
next=curr.next;
curr.next=prev;
prev=curr;
curr=next;
}
// merging zigzag marging
Node left=head;
Node right=prev;
Node nextL,nextR;
while(left!=null && right!=null){
nextL=left.next;
left.next=right;
nextR=right.next;
right.next=nextL;
left=nextL;
right=nextR;
}
}
}