Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. {
  2. again:
  3. if (next != current + 1) {
  4. try = peek();
  5. if (try == NULL)
  6. continue;
  7.  
  8. if (try == current + 1) {
  9. current++;
  10. pop()
  11. goto again;
  12. } else {
  13. push(next);
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement