├── Cpp ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── MinMax.hpp ├── MoveClassifier.hpp ├── MoveFilter.hpp ├── MoveGener.hpp ├── MovePlayer.hpp ├── README.txt ├── solve_puzzle.cpp ├── unit_test.cpp └── utils.hpp ├── LICENSE └── Python ├── .gitignore ├── README.md ├── minmax_engine.py ├── move_classifier.py ├── move_filter.py ├── move_gener.py ├── move_player.py ├── solve_puzzle.py ├── test.py ├── ui_engine.py └── utils.py /Cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/.gitignore -------------------------------------------------------------------------------- /Cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/CMakeLists.txt -------------------------------------------------------------------------------- /Cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/Makefile -------------------------------------------------------------------------------- /Cpp/MinMax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/MinMax.hpp -------------------------------------------------------------------------------- /Cpp/MoveClassifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/MoveClassifier.hpp -------------------------------------------------------------------------------- /Cpp/MoveFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/MoveFilter.hpp -------------------------------------------------------------------------------- /Cpp/MoveGener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/MoveGener.hpp -------------------------------------------------------------------------------- /Cpp/MovePlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/MovePlayer.hpp -------------------------------------------------------------------------------- /Cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/README.txt -------------------------------------------------------------------------------- /Cpp/solve_puzzle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/solve_puzzle.cpp -------------------------------------------------------------------------------- /Cpp/unit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/unit_test.cpp -------------------------------------------------------------------------------- /Cpp/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Cpp/utils.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Python/README.md -------------------------------------------------------------------------------- /Python/minmax_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Python/minmax_engine.py -------------------------------------------------------------------------------- /Python/move_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Python/move_classifier.py -------------------------------------------------------------------------------- /Python/move_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Python/move_filter.py -------------------------------------------------------------------------------- /Python/move_gener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Python/move_gener.py -------------------------------------------------------------------------------- /Python/move_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Python/move_player.py -------------------------------------------------------------------------------- /Python/solve_puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Python/solve_puzzle.py -------------------------------------------------------------------------------- /Python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Python/test.py -------------------------------------------------------------------------------- /Python/ui_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Python/ui_engine.py -------------------------------------------------------------------------------- /Python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinixLei/WeChat_LandLords/HEAD/Python/utils.py --------------------------------------------------------------------------------