├── .gitignore ├── LICENSE ├── README.md ├── text-analyzer ├── src │ └── main.cpp ├── text-analyzer.pro └── texts │ ├── en.7z │ └── ru.7z ├── text-encoding-detector.pro └── text-encoding-detector ├── src ├── ctextencodingdetector.cpp ├── ctextencodingdetector.h ├── ctextparser.cpp ├── ctextparser.h └── trigramfrequencytables │ ├── ctrigramfrequencytable_base.h │ ├── ctrigramfrequencytable_english.cpp │ ├── ctrigramfrequencytable_english.h │ ├── ctrigramfrequencytable_russian.cpp │ └── ctrigramfrequencytable_russian.h └── text-encoding-detector.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/README.md -------------------------------------------------------------------------------- /text-analyzer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-analyzer/src/main.cpp -------------------------------------------------------------------------------- /text-analyzer/text-analyzer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-analyzer/text-analyzer.pro -------------------------------------------------------------------------------- /text-analyzer/texts/en.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-analyzer/texts/en.7z -------------------------------------------------------------------------------- /text-analyzer/texts/ru.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-analyzer/texts/ru.7z -------------------------------------------------------------------------------- /text-encoding-detector.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector.pro -------------------------------------------------------------------------------- /text-encoding-detector/src/ctextencodingdetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector/src/ctextencodingdetector.cpp -------------------------------------------------------------------------------- /text-encoding-detector/src/ctextencodingdetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector/src/ctextencodingdetector.h -------------------------------------------------------------------------------- /text-encoding-detector/src/ctextparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector/src/ctextparser.cpp -------------------------------------------------------------------------------- /text-encoding-detector/src/ctextparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector/src/ctextparser.h -------------------------------------------------------------------------------- /text-encoding-detector/src/trigramfrequencytables/ctrigramfrequencytable_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector/src/trigramfrequencytables/ctrigramfrequencytable_base.h -------------------------------------------------------------------------------- /text-encoding-detector/src/trigramfrequencytables/ctrigramfrequencytable_english.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector/src/trigramfrequencytables/ctrigramfrequencytable_english.cpp -------------------------------------------------------------------------------- /text-encoding-detector/src/trigramfrequencytables/ctrigramfrequencytable_english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector/src/trigramfrequencytables/ctrigramfrequencytable_english.h -------------------------------------------------------------------------------- /text-encoding-detector/src/trigramfrequencytables/ctrigramfrequencytable_russian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector/src/trigramfrequencytables/ctrigramfrequencytable_russian.cpp -------------------------------------------------------------------------------- /text-encoding-detector/src/trigramfrequencytables/ctrigramfrequencytable_russian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector/src/trigramfrequencytables/ctrigramfrequencytable_russian.h -------------------------------------------------------------------------------- /text-encoding-detector/text-encoding-detector.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/text-encoding-detector/HEAD/text-encoding-detector/text-encoding-detector.pro --------------------------------------------------------------------------------