Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
314B

  1. CDL macros
  2. c b a
  3. count = 3
  4. advancing head pointer
  5. b a c
  6. b a c b a c b a c b
  7. b c a b c a b c a b
  8. deleting b
  9. a c
  10. deleting (a)
  11. c
  12. deleting (c)
  13. DL macros
  14. a b c
  15. count = 3
  16. deleting tail c
  17. a b
  18. deleting head a
  19. b
  20. deleting head b
  21. LL macros
  22. a b c
  23. count = 3
  24. deleting tail c
  25. a b
  26. deleting head a
  27. b
  28. deleting head b