-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.swift~
executable file
·301 lines (270 loc) · 7.57 KB
/
main.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
import Foundation
let path = "random.txt"
var randomWords : [String] = []
do {
let contents = try NSString(contentsOfFile: path, encoding: String.Encoding.ascii.rawValue)
var count = 1000
contents.enumerateLines({ (line, stop) -> () in
if count > 0 {
randomWords.append(line)
count -= 1
}
})
}
//from apple forums
func flatten(_ array: [Any]) -> [Any] {
var result = [Any]()
for element in array {
if let element = element as? [Any] {
result.append(contentsOf: flatten(element))
} else {
result.append(element)
}
}
return result
}
func charToInt(char:Character) -> Int?{
switch char{
case "a":
return 0
case "b":
return 1
case "c":
return 2
case "d":
return 3
case "e":
return 4
case "f":
return 5
case "g":
return 6
case "h":
return 7
case "i":
return 8
case "j":
return 9
case "k":
return 10
case "l":
return 11
case "m":
return 12
case "n":
return 13
case "o":
return 14
case "p":
return 15
case "q":
return 16
case "r":
return 17
case "s":
return 18
case "t":
return 19
case "u":
return 20
case "v":
return 21
case "w":
return 22
case "x":
return 23
case "y":
return 24
case "z":
return 25
default:
return -1
}
}
func getInput() -> [String] {
var inputString : [String] = []
repeat {
let inputWord = readLine()
if inputWord != "" {
inputString.append(inputWord!)
} else {
print("no string given")
print("executing sort")
break
}
} while true
return inputString
}
func priorChar(charA:Character, charB:Character)->Character{
if charToInt(char:charA)! <= charToInt(char:charB)! {
return charA
} else {
return charB
}
}
func postChar(charA:Character, charB:Character)->Character{
if charToInt(char:charA)! <= charToInt(char:charB)! {
return charB
} else {
return charA
}
}
func returnChar(string:String, offsetBy:Int) -> Character? {
if string.count > offsetBy { //+1
let index = string.index(string.startIndex, offsetBy:offsetBy)
return string[index]
}
return Character(" ")
}
func getLetters(string:String) -> String{
var output : String = ""
let stringTest = string.lowercased()
for char in stringTest {
if charToInt(char:char)! >= 0 {
output += String(char)
}
}
return output
}
func greaterInt(IntA: Int, IntB: Int)->Int{
if IntA > IntB {
return IntA
} else if IntB > IntA {
return IntB
} else {
return IntA
}
}
func lesserInt(IntA: Int, IntB: Int)->Int{
if IntA < IntB {
return IntA
} else if IntB < IntA {
return IntB
} else {
return IntA
}
}
func compareWords(wordA: String, wordB:String, offset:Int) -> String {
if wordA < wordB {
return wordA
} else {
return wordB
}
// var wordALower = getLetters(string:wordA)
// var wordBLower = getLetters(string:wordB)
// if wordALower.count ~= wordBLower.count {
// let charLocation = lesserInt(IntA:wordALower.count, IntB:wordBLower.count)
// if wordALower.count > wordBLower.count {
// wordALower += " "
// } else {
// wordBLower += " "
// }
// if charLocation < offset {
// let wordAChar = returnChar(string:wordALower, offsetBy:charLocation)!
// let wordBChar = returnChar(string:wordBLower, offsetBy:charLocation)!
// if priorChar(charA:wordAChar,charB:wordBChar) == wordAChar {
// return wordA
// } else {
// return wordB
// }
// }
// }
// let wordAChar = returnChar(string:wordA, offsetBy:offset)!
// let wordBChar = returnChar(string:wordB, offsetBy:offset)!
// if priorChar(charA:wordAChar,charB:wordBChar) == wordAChar {
// return wordA
// } else {
// return wordB
// }
}
func sortStrings(strings:[String], charCount:Int) -> [Any] {
var Strings: [[Any]] = []
for word in strings {
var added = false
for (count, array) in Strings.enumerated() {
//compare array's first word's first letter with word's first letter
if returnChar(string:getLetters(string:array[0] as! String), offsetBy:charCount) == returnChar(string:getLetters(string:word), offsetBy:charCount) {
if charCount <= word.count {
Strings[count].append(word)
added = true
}
break
}
}
//if no array with first letter of word was found, make new array with word
if !added {
var position = 0
for array in Strings {
if compareWords(wordA: word,wordB: array[0] as! String,offset: charCount) == word{
break
} else {
position += 1
}
}
Strings.insert([word],at:position)
}
}
for (count,array) in Strings.enumerated() {
if array.count > 1 {
Strings[count] = (sortStrings(strings: array as! [String], charCount:charCount + 1))
// var same = false
// for word in array {
// if word as! String == array[0] as! String {
// same = true
// break
// }
// // if findWord(array:array as! [String], word: word as! String) == true {
// // same = true
// // print("duplicate found")
// // break
// // }
// }
}
}
return Strings
}
func findWord(array:[String], word: String) -> Bool{
for (count, word) in array.enumerated() {
for (testCount, testWord) in array.enumerated() {
if testWord == word && count != testCount {
return true
} else {
return false
}
}
}
return false
}
func removeDuplicates(strings:[String]) -> [String] {
var buffer : [String] = []
for word in strings {
for testWord in buffer {
if word != testWord {
buffer.append(word)
}
}
}
return buffer
}
func printElements(array:[Any]) {
for element in array {
print(element)
}
}
// print("note that duplicates will be removed")
// print("each new line will be seen as a new word")
// print("special characters are supported but it is recommended that you do not include spaces")
// print("input no characters to execute the sort")
//let input = getInput()
//let noDupInput = Array(Set(input))
//print("given input", input)
//print("sorting input", noDupInput)
var randomWordsLower : [String] = []
for word in randomWords {
randomWordsLower.append(word.lowercased())
}
// let sortedStrings = flatten(sortStrings(strings:noDupInput, charCount:0))
// print(sortedStrings)
// printElements(array: sortedStrings)
//printElements(array: sortedStrings)
print(flatten(sortStrings(strings: randomWordsLower, charCount:0)))