mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
go: add «328. Odd Even Linked List»
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
f6ac06990e
commit
a347dcfcd6
1 changed files with 17 additions and 0 deletions
17
go/odd-even-linked-list.go
Normal file
17
go/odd-even-linked-list.go
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
func oddEvenList(head *ListNode) *ListNode {
|
||||||
|
dummies := []ListNode{ListNode{Val: 0, Next: nil}, ListNode{Val: 0, Next: nil}}
|
||||||
|
tails := []*ListNode{&dummies[0], &dummies[1]}
|
||||||
|
|
||||||
|
for idx := 0; head != nil; idx++ {
|
||||||
|
tails[idx%2].Next = head
|
||||||
|
tails[idx%2] = head
|
||||||
|
|
||||||
|
head = head.Next
|
||||||
|
}
|
||||||
|
|
||||||
|
tails[0].Next = dummies[1].Next
|
||||||
|
tails[1].Next = nil
|
||||||
|
return dummies[0].Next
|
||||||
|
}
|
Loading…
Reference in a new issue