Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
AppClass.m | 2021-11-11 | 1.8 kB | |
main.m | 2021-11-11 | 1.6 kB | |
README.txt | 2021-11-11 | 812 Bytes | |
AppClass.h | 2021-11-11 | 1.2 kB | |
AppClass.sm | 2021-11-11 | 3.3 kB | |
Makefile | 2021-11-11 | 2.8 kB | |
Totals: 6 Items | 11.4 kB | 0 |
C++ Example 3 This state machine "recognizes" the palindromes (words that read the same backwards as forwards). The words consist of the alphabet {0, 1, c} where the letter 'c' may appear only once and marks the words center. + Building ---------- NOTE: Smc.jar must be built and installed. Unix: $ make checkstring Windows Visual C++: 1. Load ex1.dsw. 2. Rebuild all. + Executing ----------- Unix & Windows: $ checkstring <string> Try several different strings, such as: $ checkstring "" -> unacceptable $ checkstring 00 -> unacceptable $ checkstring 1c -> unacceptable $ checkstring c0 -> unacceptable $ checkstring abcba -> unacceptable $ checkstring 110010c010011 -> acceptable $ checkstring 110010c110010 -> unacceptable