|
3 |
added 266 characters in body
|
||
|
|
||||
|
2 | added 1391 characters in body | ||
|
The problem is not with the turing machine, it's with "algorithm". The reason why you can't predict if an algorithm will halt or not is because of this:
any language that can't do recursion or loops wouldn't really be "general-purpose". Regular expressions and finite-state-machines are the same thing! lexing and string matching are the same thing! The reason FMSs halt is because they never loop; they just pass on the input char-by-char and exit. EDIT: For many algorithms, it's obvious whether or not they would halt. for instance:
This function clearly never halts. and, this function obviously halts:
So the bottom line: you CAN guarantee that your algorithm halts, just design it so that it does. If you are not sure whether the algorithm would halt all the time; then you probably cannot implement it in any language that guarantees "halting". |
||||
|
1 |
|
||
|
The problem is not with the turing machine, it's with "algorithm". The reason why you can't predict if an algorithm will halt or not is because of this:
any language that can't do recursion or loops wouldn't really be "general-purpose". Regular expressions and finite-state-machines are the same thing! lexing and string matching are the same thing! The reason FMSs halt is because they never loop; they just pass on the input char-by-char and exit. |
||||
