├── .travis.yml ├── Makefile ├── readme.txt ├── strtk.hpp ├── strtk_bloom_filter_example.cpp ├── strtk_combinations.cpp ├── strtk_combinator_example.cpp ├── strtk_converters_example.cpp ├── strtk_examples.cpp ├── strtk_glober.cpp ├── strtk_hexview.cpp ├── strtk_ipv4_parser.cpp ├── strtk_keyvalue_example.cpp ├── strtk_nth_combination_example.cpp ├── strtk_numstats.cpp ├── strtk_parse_test.cpp ├── strtk_period_parser.cpp ├── strtk_random_line.cpp ├── strtk_randomizer.cpp ├── strtk_search_trie_example.cpp ├── strtk_serializer_example.cpp ├── strtk_text_parser_example01.cpp ├── strtk_text_parser_example02.cpp ├── strtk_tokengrid_example.cpp ├── strtk_tokenizer_cmp.cpp ├── strtk_tokenizer_test.cpp └── strtk_wordfreq.cpp /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/Makefile -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/readme.txt -------------------------------------------------------------------------------- /strtk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk.hpp -------------------------------------------------------------------------------- /strtk_bloom_filter_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_bloom_filter_example.cpp -------------------------------------------------------------------------------- /strtk_combinations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_combinations.cpp -------------------------------------------------------------------------------- /strtk_combinator_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_combinator_example.cpp -------------------------------------------------------------------------------- /strtk_converters_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_converters_example.cpp -------------------------------------------------------------------------------- /strtk_examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_examples.cpp -------------------------------------------------------------------------------- /strtk_glober.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_glober.cpp -------------------------------------------------------------------------------- /strtk_hexview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_hexview.cpp -------------------------------------------------------------------------------- /strtk_ipv4_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_ipv4_parser.cpp -------------------------------------------------------------------------------- /strtk_keyvalue_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_keyvalue_example.cpp -------------------------------------------------------------------------------- /strtk_nth_combination_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_nth_combination_example.cpp -------------------------------------------------------------------------------- /strtk_numstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_numstats.cpp -------------------------------------------------------------------------------- /strtk_parse_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_parse_test.cpp -------------------------------------------------------------------------------- /strtk_period_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_period_parser.cpp -------------------------------------------------------------------------------- /strtk_random_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_random_line.cpp -------------------------------------------------------------------------------- /strtk_randomizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_randomizer.cpp -------------------------------------------------------------------------------- /strtk_search_trie_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_search_trie_example.cpp -------------------------------------------------------------------------------- /strtk_serializer_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_serializer_example.cpp -------------------------------------------------------------------------------- /strtk_text_parser_example01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_text_parser_example01.cpp -------------------------------------------------------------------------------- /strtk_text_parser_example02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_text_parser_example02.cpp -------------------------------------------------------------------------------- /strtk_tokengrid_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_tokengrid_example.cpp -------------------------------------------------------------------------------- /strtk_tokenizer_cmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_tokenizer_cmp.cpp -------------------------------------------------------------------------------- /strtk_tokenizer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_tokenizer_test.cpp -------------------------------------------------------------------------------- /strtk_wordfreq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArashPartow/strtk/HEAD/strtk_wordfreq.cpp --------------------------------------------------------------------------------