6.Deterministic Pushdown Automata§
Definition: A PDA M=(Q,Σ,Γ,δ,q0,z,F) is deterministic if for every q∈Q, a∈Σ∪{λ}, b∈Γ:
1. δ(q,a,b) contains at most one element2. if δ(q,λ,b) is not empty, then δ(q,c,b) must be empty for every c∈Σ.
Definition: L is a deterministic context-free language (DCFL) if and only if there exists a deterministic PDA M such that L=L(M).