For a CFG, there is a pushdown automaton; vice versa.
For a CFG, there is a parser; and I guess vice versa?
What are the relations between pushdown automata and parsers? Are they directly related? Can they be derived from each other?
What are the relations between pushdown automata and parser generators (e.g. Yacc)?
Thanks.
No, there are parsers for languages that are not context-free, in particular, context-sensitive languages.
Since non-deterministic pushdown automata are equivalent to CFGs and there exist parsers for context-sensitive languages, then no, NDPAs are not equivalent to parsers.
See the first paragraph above; the link refers to parser generators.