-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuick_Sort_on_Linked_List.cpp
119 lines (91 loc) · 2.64 KB
/
Quick_Sort_on_Linked_List.cpp
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
/*
Problem Statement:
-----------------
Sort the given Linked List using quicksort. which takes O(n^2) time in worst case and O(nLogn) in average and best cases, otherwise you may get TLE.
Input:
In this problem, method takes 1 argument: address of the head of the linked list. The function should not read any input from stdin/console.
The struct Node has a data part which stores the data and a next pointer which points to the next element of the linked list.
There are multiple test cases. For each test case, this method will be called individually.
Output:
Set *headRef to head of resultant linked list.
User Task:
The task is to complete the function quickSort() which should set the *headRef to head of the resultant linked list.
Constraints:
1<=T<=100
1<=N<=200
Note: If you use "Test" or "Expected Output Button" use below example format
Example:
Input:
2
3
1 6 2
4
1 9 3 8
Output:
1 2 6
1 3 8 9
Explanation:
Testcase 1: After sorting the nodes, we have 1, 2 and 6.
Testcase 2: After sorting the nodes, we have 1, 3, 8 and 9.
*/
// Link --> https://practice.geeksforgeeks.org/problems/quick-sort-on-linked-list/1#
// Code:
node* getTail(node* current)
{
while(current != NULL && current->next != NULL)
current = current->next;
return current;
}
node* partition(node* head , node* end , node** newHead , node** newEnd)
{
node* pivot = end;
node *prev = NULL, *cur = head, *tail = pivot;
while(cur != pivot)
{
if(cur->data < pivot->data)
{
if((*newHead) == NULL)
(*newHead) = cur;
prev = cur;
cur = cur->next;
}
else
{
if(prev)
prev->next = cur->next;
node* tmp = cur->next;
cur->next = NULL;
tail->next = cur;
tail = cur;
cur = tmp;
}
}
if((*newHead) == NULL)
(*newHead) = pivot;
(*newEnd) = tail;
return pivot;
}
node* quickSortRecur(node* head , node* end)
{
if (!head || head == end)
return head;
node *newHead = NULL, *newEnd = NULL;
node* pivot = partition(head , end , &newHead , &newEnd);
if(newHead != pivot)
{
node* tmp = newHead;
while(tmp->next != pivot)
tmp = tmp->next;
tmp->next = NULL;
newHead = quickSortRecur(newHead , tmp);
tmp = getTail(newHead);
tmp->next = pivot;
}
pivot->next = quickSortRecur(pivot->next , newEnd);
return newHead;
}
void quickSort(node **headRef)
{
(*headRef) = quickSortRecur(*headRef , getTail(*headRef));
return;
}