What type of languages are accepted by a PDA in which stack size is limited, let's say 20 items?
In my view it should still be CFL. Because there is a temporary memory to store.
|
What type of languages are accepted by a PDA in which stack size is limited, let's say 20 items? In my view it should still be CFL. Because there is a temporary memory to store.
| |||
feedback
|
|
A PDA with a stack limited to containing 20 items is equivalent to a DFA. Here's the proof.
Just to illustrate the first part of the proof, consider a PDA-5 with states A, B, C, ..., Z, and a lot of transitions. Let's say the input alphabet is {0, 1}. Then there are 2^5 = 32 different stack configurations, say. The DFA equivalent to this PDA-5 might have states A1, B1, ..., Z1, A2, B2, ..., Z2, ..., A32, B32, ..., Z32, though it will have the same number of transitions as the original. If a transition in the original PDA-5 would have taken the stack from configuration #2 in state R to configuration #17 and the machine to state F, the DFA will go from state R2 to state F17. | ||||
|
feedback
|