Short Haskell applications: text, numbers, treesort and DFAs

 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Short Haskell applications: text, numbers, treesort and DFAs
bullet Simple text processing

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Short Haskell applications: text, numbers, treesort and DFAs
bullet Simple text processing
bullet ROT-13 transcoder

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Short Haskell applications: text, numbers, treesort and DFAs
bullet Simple text processing
bullet ROT-13 transcoder
bullet Command-line interaction

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Short Haskell applications: text, numbers, treesort and DFAs
bullet Simple text processing
bullet ROT-13 transcoder
bullet Command-line interaction
bullet Palindrome checking
  • we can check whether a string is a palindrome by normalizing it and comparing it to its own reversal: the palindrome checker

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Short Haskell applications: text, numbers, treesort and DFAs
bullet Simple text processing
bullet ROT-13 transcoder
bullet Command-line interaction
bullet Palindrome checking
bullet Numeral conversion in different bases

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Short Haskell applications: text, numbers, treesort and DFAs
bullet Simple text processing
bullet ROT-13 transcoder
bullet Command-line interaction
bullet Palindrome checking
bullet Numeral conversion in different bases
bullet Binary trees and treesort

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Short Haskell applications: text, numbers, treesort and DFAs
bullet Simple text processing
bullet ROT-13 transcoder
bullet Command-line interaction
bullet Palindrome checking
bullet Numeral conversion in different bases
bullet Binary trees and treesort
bullet DFA simulation
  • we can transcribe a definition of deterministic finite automata almost verbatim from a theory text, and then experiment with automata and strings

Control bar