Semestral project for the subject B6B36PJC on FEE CTU in winter semester 2019.
Word Count
- A typical problem with simple parallelization.
- The input is a set of files, the output is an ordered listing of the words and their frequency.
- In addition to words, the so-called n-grams can be counted.
(Translated from Czech original)
- Written in: C++14
- Supports multiple threads (One thread processing one file)
git clone https://github.com/Baterka/WordCount.git
cd WordCount
mkdir Release
cd Release
cmake -DCMAKE_BUILD_TYPE=Release ..
make