├── .gitignore ├── LICENSE ├── README.md └── src └── com └── hankcs └── algorithm ├── DoctorExample.java ├── Viterbi.java └── WeatherExample.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/Viterbi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/Viterbi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/Viterbi/HEAD/README.md -------------------------------------------------------------------------------- /src/com/hankcs/algorithm/DoctorExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/Viterbi/HEAD/src/com/hankcs/algorithm/DoctorExample.java -------------------------------------------------------------------------------- /src/com/hankcs/algorithm/Viterbi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/Viterbi/HEAD/src/com/hankcs/algorithm/Viterbi.java -------------------------------------------------------------------------------- /src/com/hankcs/algorithm/WeatherExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/Viterbi/HEAD/src/com/hankcs/algorithm/WeatherExample.java --------------------------------------------------------------------------------