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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2017-2020 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
@usableFromInline
internal struct Heap<Element: Comparable> {
@usableFromInline
internal private(set) var storage: ContiguousArray<Element> = []
@usableFromInline
internal init() {}
internal func comparator(_ lhs: Element, _ rhs: Element) -> Bool {
// This heap is always a min-heap.
return lhs < rhs
}
// named `PARENT` in CLRS
private func parentIndex(_ i: Int) -> Int {
return (i-1) / 2
}
// named `LEFT` in CLRS
internal func leftIndex(_ i: Int) -> Int {
return 2*i + 1
}
// named `RIGHT` in CLRS
internal func rightIndex(_ i: Int) -> Int {
return 2*i + 2
}
// named `MAX-HEAPIFY` in CLRS
private mutating func heapify(_ index: Int) {
let left = self.leftIndex(index)
let right = self.rightIndex(index)
var root: Int
if left <= (self.storage.count - 1) && self.comparator(storage[left], storage[index]) {
root = left
} else {
root = index
}
if right <= (self.storage.count - 1) && self.comparator(storage[right], storage[root]) {
root = right
}
if root != index {
self.storage.swapAt(index, root)
self.heapify(root)
}
}
// named `HEAP-INCREASE-KEY` in CRLS
private mutating func heapRootify(index: Int, key: Element) {
var index = index
if self.comparator(storage[index], key) {
fatalError("New key must be closer to the root than current key")
}
self.storage[index] = key
while index > 0 && self.comparator(self.storage[index], self.storage[self.parentIndex(index)]) {
self.storage.swapAt(index, self.parentIndex(index))
index = self.parentIndex(index)
}
}
@usableFromInline
internal mutating func append(_ value: Element) {
var i = self.storage.count
self.storage.append(value)
while i > 0 && self.comparator(self.storage[i], self.storage[self.parentIndex(i)]) {
self.storage.swapAt(i, self.parentIndex(i))
i = self.parentIndex(i)
}
}
@discardableResult
@usableFromInline
internal mutating func removeRoot() -> Element? {
return self.remove(index: 0)
}
@discardableResult
@usableFromInline
internal mutating func remove(value: Element) -> Bool {
if let idx = self.storage.firstIndex(of: value) {
self.remove(index: idx)
return true
} else {
return false
}
}
@discardableResult
private mutating func remove(index: Int) -> Element? {
guard self.storage.count > 0 else {
return nil
}
let element = self.storage[index]
if self.storage.count == 1 || self.storage[index] == self.storage[self.storage.count - 1] {
self.storage.removeLast()
} else if !self.comparator(self.storage[index], self.storage[self.storage.count - 1]) {
self.heapRootify(index: index, key: self.storage[self.storage.count - 1])
self.storage.removeLast()
} else {
self.storage[index] = self.storage[self.storage.count - 1]
self.storage.removeLast()
self.heapify(index)
}
return element
}
}
extension Heap: CustomDebugStringConvertible {
@usableFromInline
var debugDescription: String {
guard self.storage.count > 0 else {
return "<empty heap>"
}
let descriptions = self.storage.map { String(describing: $0) }
let maxLen: Int = descriptions.map { $0.count }.max()! // storage checked non-empty above
let paddedDescs = descriptions.map { (desc: String) -> String in
var desc = desc
while desc.count < maxLen {
if desc.count % 2 == 0 {
desc = " \(desc)"
} else {
desc = "\(desc) "
}
}
return desc
}
var all = "\n"
let spacing = String(repeating: " ", count: maxLen)
func subtreeWidths(rootIndex: Int) -> (Int, Int) {
let lcIdx = self.leftIndex(rootIndex)
let rcIdx = self.rightIndex(rootIndex)
var leftSpace = 0
var rightSpace = 0
if lcIdx < self.storage.count {
let sws = subtreeWidths(rootIndex: lcIdx)
leftSpace += sws.0 + sws.1 + maxLen
}
if rcIdx < self.storage.count {
let sws = subtreeWidths(rootIndex: rcIdx)
rightSpace += sws.0 + sws.1 + maxLen
}
return (leftSpace, rightSpace)
}
for (index, desc) in paddedDescs.enumerated() {
let (leftWidth, rightWidth) = subtreeWidths(rootIndex: index)
all += String(repeating: " ", count: leftWidth)
all += desc
all += String(repeating: " ", count: rightWidth)
func height(index: Int) -> Int {
return Int(log2(Double(index + 1)))
}
let myHeight = height(index: index)
let nextHeight = height(index: index + 1)
if myHeight != nextHeight {
all += "\n"
} else {
all += spacing
}
}
all += "\n"
return all
}
}
@usableFromInline
struct HeapIterator<Element: Comparable>: IteratorProtocol {
private var heap: Heap<Element>
init(heap: Heap<Element>) {
self.heap = heap
}
@usableFromInline
mutating func next() -> Element? {
return self.heap.removeRoot()
}
}
extension Heap: Sequence {
var startIndex: Int { return self.storage.startIndex }
var endIndex: Int { return self.storage.endIndex }
@usableFromInline
var underestimatedCount: Int {
return self.storage.count
}
@usableFromInline
func makeIterator() -> HeapIterator<Element> {
return HeapIterator(heap: self)
}
subscript(position: Int) -> Element {
return self.storage[position]
}
func index(after i: Int) -> Int {
return i + 1
}
var count: Int {
return self.storage.count
}
}
|