About 1,760 results
Open links in new tab
  1. Examples of Pushdown Automata. The key idea is to count the number of a’s using the stack. Repeatedly push X onto the stack for each a. Repeatedly pop X from the stack for each b. Now, we …

  2. Pushdown Automata: Examples - ODU

    Sep 10, 2025 · For example, PDAs are very good at counting things. Consider the problem of designing an automaton to recognize strings with k occurrences of 101, where k is some constant.

  3. Construct Pushdown Automata for given languages

    Jul 11, 2025 · A push down automata is similar to deterministic finite automata except that it has a few more properties than a DFA.The data structure used for implementing a PDA is stack.

  4. Pushdown Automata A pushdown automaton (PDA) is a finite automaton equipped with a stack-based memory. Each transition is based on the current input symbol and the top of the stack, optionally …

    Missing:
    • examples
    Must include:
  5. Pushdown automaton - Wikipedia

    Pushdown automata are used in theories about what can be computed by machines. They are more capable than finite-state machines but less capable than Turing machines (see below).

  6. Pushdown Automata | Brilliant Math & Science Wiki

    This pushdown automaton only shows instructions for the stack; usually, the pushdown automata diagrams will also contain information about which symbols are needed to move from one state to …

  7. One state will represent an excess of a’s. Another state will represent an excess of b’s. We can tell when the excess switches from one symbol to the other because at that point the stack will be empty. In …

  8. COMS W3261 CS Theory Lecture 8: Pushdown Automata

    A pushdown automaton is an ε-NFA with a pushdown stack (last-in, first-out stack). Pushdown automata are to context-free languages as finite automata are to regular languages: that is to say, pushdown …

  9. Problems on Pushdown Automata - GeeksforGeeks

    Jul 24, 2025 · This page provides a collection of easy-to-follow examples showing how PDAs process different inputs. To test your knowledge, attempt Quiz on Context Free Languages and Pushdown …

  10. Basically a pushdown automaton is − "Finite state machine" + "a stack“ ans the top symbol of the stack Push − a new symbol is added at the top. Pop − the top symbol is read and removed. A PDA may or …