LearningMasteringAlgorithms C
1.0.0
Mac 下使用Xcode 開啟MasteringAlgorithms.xcodeproj
即可。 Algorithms.xcodeproj
為演算法庫文件工程。每個Example 都是單獨的運行檔案。
只需要有簡單的c 編譯環境cc
然後執行./run bfs
,其中bfs
為Example
中的範例目錄。
也可以自己使用cc
gcc
等, gcc source/*.c Example/bfs/main.c -I ./include -o bfs && ./bfs