Guest User

Untitled

a guest
Jun 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. GRAM:
  2.  
  3. S -> A | "
  4. A -> E .
  5. E -> & F ;
  6. F -> S W P
  7. W -> @ | eps
  8. P -> E | eps
  9.  
  10. First
  11.  
  12. S A E F W P
  13. &, " & & &, " @, eps &, eps
  14.  
  15. Follow
  16.  
  17. S A E F W P
  18. $, @, &, ; $, @, &, ; . ; &, ; ;
  19.  
  20.  
  21. LL1
  22.  
  23. & " @ ; .
  24.  
  25. S S->A S->" / / /
  26. A A->E. / / / /
  27. E E->&F; / / / /
  28. F F->SWP F->SWP / / /
  29. W W->eps / W->@ W->eps /
  30. P P->E / / P->eps /
Add Comment
Please, Sign In to add comment