├── .gitattributes ├── .gitmodules ├── .vscode ├── c_cpp_properties.json ├── launch.json └── settings.json ├── CJSON ├── LICENSE.txt ├── cJSON.c └── cJSON.h ├── CMakeLists.txt ├── Debug ├── GB2312search.exe.recipe ├── GB2312search.ilk ├── GB2312search.log ├── GB2312search.obj ├── GB2312search.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── GB2312search.lastbuildstate │ ├── GB2312search.write.1u.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog ├── cJSON.obj ├── codeconv.obj ├── vc142.idb ├── vc142.pdb ├── zh_code_table.obj ├── zh_hash_boost.obj └── zh_pinyin_decoder.obj ├── GB2312search.cpp ├── GB2312search.vcxproj ├── GB2312search.vcxproj.filters ├── GB2312search.vcxproj.user ├── LICENSE.txt ├── README.md ├── attachments ├── 2024-08-25-15-39-21-image.png ├── 2024-08-25-15-53-00-image.png ├── 2024-08-25-15-54-35-image.png ├── 2024-08-28-01-23-01-image.png ├── 2024-08-28-01-24-39-image.png ├── 2024-08-28-01-25-34-image.png ├── 2024-09-01-11-32-47-image.png ├── 2024-09-01-11-54-52-image.png ├── 2024-09-01-11-57-20-image.png └── 2024-09-20-00-31-32-image.png ├── codeconv ├── codeconv.cpp └── codeconv.h ├── portable └── softwares │ └── ASCII.exe ├── x64 └── Debug │ ├── GB2312search.exe.recipe │ ├── GB2312search.ilk │ ├── GB2312search.log │ ├── GB2312search.obj │ ├── GB2312search.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── GB2312search.lastbuildstate │ ├── GB2312search.write.1u.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── cJSON.obj │ ├── codeconv.obj │ ├── gb2312search.obj.enc │ ├── vc142.idb │ ├── vc142.pdb │ ├── zh_code_table.obj │ ├── zh_hash_boost.obj │ ├── zh_pinyin_decoder.obj │ ├── zh_pinyin_decoder.obj.enc │ └── zh_word_segmentation.obj └── zh_pinyin_decoder ├── bin ├── zh_pinyin.bin └── zh_word_dict.json ├── zh_code_table.c ├── zh_code_table.h ├── zh_hash_boost.c ├── zh_hash_boost.h ├── zh_pinyin_decoder.c └── zh_pinyin_decoder.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CJSON/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/CJSON/LICENSE.txt -------------------------------------------------------------------------------- /CJSON/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/CJSON/cJSON.c -------------------------------------------------------------------------------- /CJSON/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/CJSON/cJSON.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Debug/GB2312search.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.exe.recipe -------------------------------------------------------------------------------- /Debug/GB2312search.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.ilk -------------------------------------------------------------------------------- /Debug/GB2312search.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.log -------------------------------------------------------------------------------- /Debug/GB2312search.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.obj -------------------------------------------------------------------------------- /Debug/GB2312search.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Debug/GB2312search.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Debug/GB2312search.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Debug/GB2312search.tlog/GB2312search.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.tlog/GB2312search.lastbuildstate -------------------------------------------------------------------------------- /Debug/GB2312search.tlog/GB2312search.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.tlog/GB2312search.write.1u.tlog -------------------------------------------------------------------------------- /Debug/GB2312search.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Debug/GB2312search.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Debug/GB2312search.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/GB2312search.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Debug/cJSON.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/cJSON.obj -------------------------------------------------------------------------------- /Debug/codeconv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/codeconv.obj -------------------------------------------------------------------------------- /Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/vc142.idb -------------------------------------------------------------------------------- /Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/vc142.pdb -------------------------------------------------------------------------------- /Debug/zh_code_table.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/zh_code_table.obj -------------------------------------------------------------------------------- /Debug/zh_hash_boost.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/zh_hash_boost.obj -------------------------------------------------------------------------------- /Debug/zh_pinyin_decoder.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/Debug/zh_pinyin_decoder.obj -------------------------------------------------------------------------------- /GB2312search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/GB2312search.cpp -------------------------------------------------------------------------------- /GB2312search.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/GB2312search.vcxproj -------------------------------------------------------------------------------- /GB2312search.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/GB2312search.vcxproj.filters -------------------------------------------------------------------------------- /GB2312search.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/GB2312search.vcxproj.user -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/README.md -------------------------------------------------------------------------------- /attachments/2024-08-25-15-39-21-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/attachments/2024-08-25-15-39-21-image.png -------------------------------------------------------------------------------- /attachments/2024-08-25-15-53-00-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/attachments/2024-08-25-15-53-00-image.png -------------------------------------------------------------------------------- /attachments/2024-08-25-15-54-35-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/attachments/2024-08-25-15-54-35-image.png -------------------------------------------------------------------------------- /attachments/2024-08-28-01-23-01-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/attachments/2024-08-28-01-23-01-image.png -------------------------------------------------------------------------------- /attachments/2024-08-28-01-24-39-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/attachments/2024-08-28-01-24-39-image.png -------------------------------------------------------------------------------- /attachments/2024-08-28-01-25-34-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/attachments/2024-08-28-01-25-34-image.png -------------------------------------------------------------------------------- /attachments/2024-09-01-11-32-47-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/attachments/2024-09-01-11-32-47-image.png -------------------------------------------------------------------------------- /attachments/2024-09-01-11-54-52-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/attachments/2024-09-01-11-54-52-image.png -------------------------------------------------------------------------------- /attachments/2024-09-01-11-57-20-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/attachments/2024-09-01-11-57-20-image.png -------------------------------------------------------------------------------- /attachments/2024-09-20-00-31-32-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/attachments/2024-09-20-00-31-32-image.png -------------------------------------------------------------------------------- /codeconv/codeconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/codeconv/codeconv.cpp -------------------------------------------------------------------------------- /codeconv/codeconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/codeconv/codeconv.h -------------------------------------------------------------------------------- /portable/softwares/ASCII.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/portable/softwares/ASCII.exe -------------------------------------------------------------------------------- /x64/Debug/GB2312search.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.exe.recipe -------------------------------------------------------------------------------- /x64/Debug/GB2312search.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.ilk -------------------------------------------------------------------------------- /x64/Debug/GB2312search.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.log -------------------------------------------------------------------------------- /x64/Debug/GB2312search.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.obj -------------------------------------------------------------------------------- /x64/Debug/GB2312search.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /x64/Debug/GB2312search.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /x64/Debug/GB2312search.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /x64/Debug/GB2312search.tlog/GB2312search.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.tlog/GB2312search.lastbuildstate -------------------------------------------------------------------------------- /x64/Debug/GB2312search.tlog/GB2312search.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.tlog/GB2312search.write.1u.tlog -------------------------------------------------------------------------------- /x64/Debug/GB2312search.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /x64/Debug/GB2312search.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /x64/Debug/GB2312search.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/GB2312search.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /x64/Debug/cJSON.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/cJSON.obj -------------------------------------------------------------------------------- /x64/Debug/codeconv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/codeconv.obj -------------------------------------------------------------------------------- /x64/Debug/gb2312search.obj.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/gb2312search.obj.enc -------------------------------------------------------------------------------- /x64/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/vc142.idb -------------------------------------------------------------------------------- /x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/vc142.pdb -------------------------------------------------------------------------------- /x64/Debug/zh_code_table.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/zh_code_table.obj -------------------------------------------------------------------------------- /x64/Debug/zh_hash_boost.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/zh_hash_boost.obj -------------------------------------------------------------------------------- /x64/Debug/zh_pinyin_decoder.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/zh_pinyin_decoder.obj -------------------------------------------------------------------------------- /x64/Debug/zh_pinyin_decoder.obj.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/zh_pinyin_decoder.obj.enc -------------------------------------------------------------------------------- /x64/Debug/zh_word_segmentation.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/x64/Debug/zh_word_segmentation.obj -------------------------------------------------------------------------------- /zh_pinyin_decoder/bin/zh_pinyin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/zh_pinyin_decoder/bin/zh_pinyin.bin -------------------------------------------------------------------------------- /zh_pinyin_decoder/bin/zh_word_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/zh_pinyin_decoder/bin/zh_word_dict.json -------------------------------------------------------------------------------- /zh_pinyin_decoder/zh_code_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/zh_pinyin_decoder/zh_code_table.c -------------------------------------------------------------------------------- /zh_pinyin_decoder/zh_code_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/zh_pinyin_decoder/zh_code_table.h -------------------------------------------------------------------------------- /zh_pinyin_decoder/zh_hash_boost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/zh_pinyin_decoder/zh_hash_boost.c -------------------------------------------------------------------------------- /zh_pinyin_decoder/zh_hash_boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/zh_pinyin_decoder/zh_hash_boost.h -------------------------------------------------------------------------------- /zh_pinyin_decoder/zh_pinyin_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/zh_pinyin_decoder/zh_pinyin_decoder.c -------------------------------------------------------------------------------- /zh_pinyin_decoder/zh_pinyin_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRIEDparrot/zh_pinyin_decoder/HEAD/zh_pinyin_decoder/zh_pinyin_decoder.h --------------------------------------------------------------------------------