Files
hello-algo/ja/codes/swift/chapter_tree/array_binary_tree.swift
Yudong Jin d7b2277d2b Re-translate the Japanese version (#1871)
* Retranslate Japanese docs with GPT-5.4

* Retranslate Japanese code with GPT-5.4
2026-03-30 07:30:15 +08:00

142 lines
3.8 KiB
Swift
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* File: array_binary_tree.swift
* Created Time: 2023-07-23
* Author: nuomi1 (nuomi1@qq.com)
*/
import utils
/* */
class ArrayBinaryTree {
private var tree: [Int?]
/* */
init(arr: [Int?]) {
tree = arr
}
/* */
func size() -> Int {
tree.count
}
/* i */
func val(i: Int) -> Int? {
// null
if i < 0 || i >= size() {
return nil
}
return tree[i]
}
/* i */
func left(i: Int) -> Int {
2 * i + 1
}
/* i */
func right(i: Int) -> Int {
2 * i + 2
}
/* i */
func parent(i: Int) -> Int {
(i - 1) / 2
}
/* */
func levelOrder() -> [Int] {
var res: [Int] = []
//
for i in 0 ..< size() {
if let val = val(i: i) {
res.append(val)
}
}
return res
}
/* */
private func dfs(i: Int, order: String, res: inout [Int]) {
//
guard let val = val(i: i) else {
return
}
//
if order == "pre" {
res.append(val)
}
dfs(i: left(i: i), order: order, res: &res)
//
if order == "in" {
res.append(val)
}
dfs(i: right(i: i), order: order, res: &res)
//
if order == "post" {
res.append(val)
}
}
/* */
func preOrder() -> [Int] {
var res: [Int] = []
dfs(i: 0, order: "pre", res: &res)
return res
}
/* */
func inOrder() -> [Int] {
var res: [Int] = []
dfs(i: 0, order: "in", res: &res)
return res
}
/* */
func postOrder() -> [Int] {
var res: [Int] = []
dfs(i: 0, order: "post", res: &res)
return res
}
}
@main
enum _ArrayBinaryTree {
/* Driver Code */
static func main() {
//
//
let arr = [1, 2, 3, 4, nil, 6, 7, 8, 9, nil, nil, 12, nil, nil, 15]
let root = TreeNode.listToTree(arr: arr)
print("\n二分木を初期化\n")
print("二分木の配列表現:")
print(arr)
print("二分木の連結リスト表現:")
PrintUtil.printTree(root: root)
//
let abt = ArrayBinaryTree(arr: arr)
//
let i = 1
let l = abt.left(i: i)
let r = abt.right(i: i)
let p = abt.parent(i: i)
print("\n現在のノードのインデックスは \(i) 、値は \(abt.val(i: i) as Any)")
print("左の子ノードのインデックスは \(l) 、値は \(abt.val(i: l) as Any)")
print("右の子ノードのインデックスは \(r) 、値は \(abt.val(i: r) as Any)")
print("親ノードのインデックスは \(p) 、値は \(abt.val(i: p) as Any)")
//
var res = abt.levelOrder()
print("\nレベル順走査:\(res)")
res = abt.preOrder()
print("先行順走査:\(res)")
res = abt.inOrder()
print("中間順走査:\(res)")
res = abt.postOrder()
print("後順走査は:\(res)")
}
}