-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathDoublyLinkedList.swift
160 lines (130 loc) · 2.47 KB
/
DoublyLinkedList.swift
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
//Doubly Linked List
//by Sayed Mahmudul Alam
//TO DO: import Link.swift
public class DoublyLinkedList {
var first: Link?
var last: Link?
init() {
first = nil
last = nil
}
func isEmpty() -> Bool {
return (first == nil)
}
func insertFirst(data: Int) {
let link = Link(data:data)
if(isEmpty()) {
last = link
} else {
first!.previous = link
}
link.next = first
first = link
}
func insertLast(data: Int) {
let link = Link(data:data)
if(isEmpty()) {
first = link
} else {
last!.next = link
}
link.previous = last
last = link
}
func insertAfter(key: Int, data: Int) -> Bool {
guard var current = first else {
print("list is empty!!")
return false
}
while(current.getData() != key) {
if let next = current.next {
current = next
} else {
print("key not found")
return false
}
}
let link = Link(data: data)
if(current === last) {
link.next = nil
last = link
} else {
link.next = current.next
current.next!.previous = link
}
link.previous = current
current.next = link
return true
}
func deleteFirst() -> Int? {
guard let current = first else {
return nil
}
if(first!.next == nil) {
last = nil
} else {
first!.next!.previous = nil
}
first = first!.next
return current.getData()
}
func deleteLast() -> Int? {
guard let current = last else {
return nil
}
if(first!.next == nil) {
first = nil
} else {
last!.previous!.next = nil
}
last = last!.previous
return current.getData()
}
func delete(key: Int) -> Int? {
guard var current = first else {
print("list is empty!!")
return nil
}
while(current.getData() != key) {
if let next = current.next {
current = next
} else {
print("key not found")
return nil
}
}
if(current === first) {
first = current.next
} else {
current.previous!.next = current.next
}
if(current === last) {
last = current.previous
} else {
current.next!.previous = current.previous
}
return current.getData()
}
func displayForward() {
var current = first
if(current == nil) {
print("list is empty!!")
} else {
while current != nil {
print(current!.getData())
current = current!.next
}
}
}
func displayBackward() {
var current = last
if(current == nil) {
print("List is empty")
} else {
while(current != nil) {
print(current!.getData())
current = current!.previous
}
}
}
}