Day #25

Linked Lists and Indirect Enums

It is possible to make a linked list in 4 lines of code in Swift (but just because you can do something doesn’t mean you should)

1
2
3
4
5
6
7
8
9
indirect enum LinkedListNode<T> {
    case value(value: T)
    case next(value: T, next: LinkedListNode)
}

switch currentNode {
  case .value(let value): print(value)
  case .next(let value, let next): print(value); currentNode = next 
}

Originally published 09/10/2021 https://pittcsc.org/, republished 09/09/2022.

Licensed under CC BY-NC-SA 4.0
Last updated on Sep 10, 2021 00:00 UTC
Built with Hugo
Theme Stack designed by Jimmy