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
