feat: add Swift codes for chapter_searching articles (#309)

* feat: add Swift codes for linear_search article

* feat: add Swift codes for binary_search article

* feat: add Swift codes for hashing_search article
This commit is contained in:
nuomi1
2023-01-30 15:43:29 +08:00
committed by GitHub
parent 15c798046a
commit 1665fe176c
8 changed files with 261 additions and 7 deletions

View File

@ -11,4 +11,14 @@ public class ListNode {
public init(x: Int) {
val = x
}
public static func arrToLinkedList(arr: [Int]) -> ListNode? {
let dum = ListNode(x: 0)
var head: ListNode? = dum
for val in arr {
head?.next = ListNode(x: val)
head = head?.next
}
return dum.next
}
}