Skip to content

feat: add swift implementation to lcof2 problem: No.029 #3028

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions lcof2/剑指 Offer II 029. 排序的循环链表/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,51 @@ function insert(head: Node | null, insertVal: number): Node | null {
}
```

#### Swift

```swift
/* class Node {
* var val: Int
* var next: Node?

* init(_ val: Int) {
* self.val = val
* self.next = nil
* }
* }
*/

class Solution {
func insert(_ head: Node?, _ insertVal: Int) -> Node? {
let newNode = Node(insertVal)
if head == nil {
newNode.next = newNode
return newNode
}

var current = head
repeat {
if current!.val <= insertVal && insertVal <= current!.next!.val {
break
}

if current!.val > current!.next!.val && (insertVal >= current!.val || insertVal <= current!.next!.val) {
break
}

if current!.next === head {
break
}
current = current!.next
} while current !== head

newNode.next = current!.next
current!.next = newNode
return head
}
}
```

<!-- tabs:end -->

<!-- solution:end -->
Expand Down
40 changes: 40 additions & 0 deletions lcof2/剑指 Offer II 029. 排序的循环链表/Solution.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/* class Node {
* var val: Int
* var next: Node?

* init(_ val: Int) {
* self.val = val
* self.next = nil
* }
* }
*/

class Solution {
func insert(_ head: Node?, _ insertVal: Int) -> Node? {
let newNode = Node(insertVal)
if head == nil {
newNode.next = newNode
return newNode
}

var current = head
repeat {
if current!.val <= insertVal && insertVal <= current!.next!.val {
break
}

if current!.val > current!.next!.val && (insertVal >= current!.val || insertVal <= current!.next!.val) {
break
}

if current!.next === head {
break
}
current = current!.next
} while current !== head

newNode.next = current!.next
current!.next = newNode
return head
}
}