|
|
@ -35,6 +35,7 @@ let package = Package(
|
|
|
|
.executable(name: "binary_tree", targets: ["binary_tree"]),
|
|
|
|
.executable(name: "binary_tree", targets: ["binary_tree"]),
|
|
|
|
.executable(name: "binary_tree_bfs", targets: ["binary_tree_bfs"]),
|
|
|
|
.executable(name: "binary_tree_bfs", targets: ["binary_tree_bfs"]),
|
|
|
|
.executable(name: "binary_tree_dfs", targets: ["binary_tree_dfs"]),
|
|
|
|
.executable(name: "binary_tree_dfs", targets: ["binary_tree_dfs"]),
|
|
|
|
|
|
|
|
.executable(name: "array_binary_tree", targets: ["array_binary_tree"]),
|
|
|
|
.executable(name: "binary_search_tree", targets: ["binary_search_tree"]),
|
|
|
|
.executable(name: "binary_search_tree", targets: ["binary_search_tree"]),
|
|
|
|
.executable(name: "avl_tree", targets: ["avl_tree"]),
|
|
|
|
.executable(name: "avl_tree", targets: ["avl_tree"]),
|
|
|
|
// chapter_heap
|
|
|
|
// chapter_heap
|
|
|
@ -120,6 +121,7 @@ let package = Package(
|
|
|
|
.executableTarget(name: "binary_tree", dependencies: ["utils"], path: "chapter_tree", sources: ["binary_tree.swift"]),
|
|
|
|
.executableTarget(name: "binary_tree", dependencies: ["utils"], path: "chapter_tree", sources: ["binary_tree.swift"]),
|
|
|
|
.executableTarget(name: "binary_tree_bfs", dependencies: ["utils"], path: "chapter_tree", sources: ["binary_tree_bfs.swift"]),
|
|
|
|
.executableTarget(name: "binary_tree_bfs", dependencies: ["utils"], path: "chapter_tree", sources: ["binary_tree_bfs.swift"]),
|
|
|
|
.executableTarget(name: "binary_tree_dfs", dependencies: ["utils"], path: "chapter_tree", sources: ["binary_tree_dfs.swift"]),
|
|
|
|
.executableTarget(name: "binary_tree_dfs", dependencies: ["utils"], path: "chapter_tree", sources: ["binary_tree_dfs.swift"]),
|
|
|
|
|
|
|
|
.executableTarget(name: "array_binary_tree", dependencies: ["utils"], path: "chapter_tree", sources: ["array_binary_tree.swift"]),
|
|
|
|
.executableTarget(name: "binary_search_tree", dependencies: ["utils"], path: "chapter_tree", sources: ["binary_search_tree.swift"]),
|
|
|
|
.executableTarget(name: "binary_search_tree", dependencies: ["utils"], path: "chapter_tree", sources: ["binary_search_tree.swift"]),
|
|
|
|
.executableTarget(name: "avl_tree", dependencies: ["utils"], path: "chapter_tree", sources: ["avl_tree.swift"]),
|
|
|
|
.executableTarget(name: "avl_tree", dependencies: ["utils"], path: "chapter_tree", sources: ["avl_tree.swift"]),
|
|
|
|
// chapter_heap
|
|
|
|
// chapter_heap
|
|
|
|