-
Notifications
You must be signed in to change notification settings - Fork 0
/
linkedListSort.js
113 lines (82 loc) · 2.06 KB
/
linkedListSort.js
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
class node{
constructor(data,next=null){
this.data=data
this.next=null
}
}
class linkedlist{
constructor(){
this.head=null
this.tail=null
this.length=0
}
addValue(value){
let newNode=new node(value)
if(!this.head){
this.head=newNode
this.tail=newNode
}else{
this.tail.next=newNode
this.tail=newNode
}this.length++
}
partition(start,end){
let pivot=start
let current=start
let temp=null
while(start.data!==end){
if(start.data<pivot.data){
current=current.next
temp=start.data
start.data=current.data
current.data=temp
}
start=start.next
}
temp=pivot.data
pivot.data=current.data
current.data=temp
return current
}
quicksort(start,end){
if(start===end || start==null || end==null){
return
}
let pivot=this.partition(start,end)
this.quicksort(start,pivot)
this.quicksort(pivot.next,end)
}
sortNode(){
let sorted=false
while(!sorted){
sorted=true
let current=this.head
while(current&¤t.next){
if(current.data>current.next.data){
const temp=current.data
current.data=current.next.data
current.next.data=temp
sorted=false
}
current=current.next
}
}
}
printList() {
let currentNode = this.head;
while (currentNode) {
console.log(currentNode.data)
currentNode = currentNode.next
}
}
}
let ll=new linkedlist
ll.addValue(10)
ll.addValue(30)
ll.addValue(20)
ll.addValue(50)
ll.addValue(15)
ll.addValue(25)
// ll.sortNode()
ll.printList()
ll.quicksort(10,25)