stacks and deques
play

Stacks and Deques Michael Albert 1 Mike Atkinson 1 Steve Linton 2 1 - PowerPoint PPT Presentation

History Upper bounds Lower bounds Conclusions and questions Stacks and Deques Michael Albert 1 Mike Atkinson 1 Steve Linton 2 1 Department of Computer Science, University of Otago 2 School of Computer Science, University of St Andrews PP2008,


  1. History Upper bounds Lower bounds Conclusions and questions Stacks and Deques Michael Albert 1 Mike Atkinson 1 Steve Linton 2 1 Department of Computer Science, University of Otago 2 School of Computer Science, University of St Andrews PP2008, Otago, June 2008 Albert, Atkinson, Linton Stacks and Deques

  2. History Upper bounds Lower bounds Conclusions and questions Outline of talk Early pattern class history 1 Upper bounds 2 Lower bounds 3 Conclusions and questions 4 Albert, Atkinson, Linton Stacks and Deques

  3. History Upper bounds Lower bounds Conclusions and questions Early pattern class history 1 Upper bounds 2 Lower bounds 3 Conclusions and questions 4 Albert, Atkinson, Linton Stacks and Deques

  4. History Upper bounds Lower bounds Conclusions and questions Three early landmarks D.E. Knuth: Fundamental Algorithms, The Art of Computer Programming Vol. 1 (First Edition), especially § 2.2.1 Addison-Wesley, Reading, Mass. (1968). R.E. Tarjan: Sorting using networks of queues and stacks, Journal of the ACM 19 (1972), 341–346. V.R. Pratt: Computing permutations with double-ended queues, parallel stacks and parallel queues, Proc. ACM Symp. Theory of Computing 5 (1973), 268–277. Albert, Atkinson, Linton Stacks and Deques

  5. History Upper bounds Lower bounds Conclusions and questions Data Structures Figure: What permutations can a data structure generate (or sort)? Albert, Atkinson, Linton Stacks and Deques

  6. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 1 2 3 4 5 Albert, Atkinson, Linton Stacks and Deques

  7. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 2 3 4 5 1 Albert, Atkinson, Linton Stacks and Deques

  8. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 3 4 5 2 1 Albert, Atkinson, Linton Stacks and Deques

  9. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 2 3 4 5 1 Albert, Atkinson, Linton Stacks and Deques

  10. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 2 4 5 3 1 Albert, Atkinson, Linton Stacks and Deques

  11. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 2 5 4 3 1 Albert, Atkinson, Linton Stacks and Deques

  12. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 2 4 5 3 1 Albert, Atkinson, Linton Stacks and Deques

  13. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 2 4 5 3 1 Albert, Atkinson, Linton Stacks and Deques

  14. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 2 4 5 3 1 Albert, Atkinson, Linton Stacks and Deques

  15. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 2 4 5 3 1 Albert, Atkinson, Linton Stacks and Deques

  16. History Upper bounds Lower bounds Conclusions and questions Generating a permutation 2 4 5 3 1 Albert, Atkinson, Linton Stacks and Deques

  17. History Upper bounds Lower bounds Conclusions and questions Knuth Enumeration of stack permutations and the 312-avoidance criterion Albert, Atkinson, Linton Stacks and Deques

  18. History Upper bounds Lower bounds Conclusions and questions Knuth Enumeration of stack permutations and the 312-avoidance criterion Enumeration of restricted-input deque permutations, showed they avoid { 4213 , 4231 } Albert, Atkinson, Linton Stacks and Deques

  19. History Upper bounds Lower bounds Conclusions and questions Knuth Enumeration of stack permutations and the 312-avoidance criterion Enumeration of restricted-input deque permutations, showed they avoid { 4213 , 4231 } Considered stacks in series Albert, Atkinson, Linton Stacks and Deques

  20. History Upper bounds Lower bounds Conclusions and questions Knuth Enumeration of stack permutations and the 312-avoidance criterion Enumeration of restricted-input deque permutations, showed they avoid { 4213 , 4231 } Considered stacks in series Exercise 2.2.1.13: “ [M48] How many permutations of n elements are obtainable with the use of a general deque?” Albert, Atkinson, Linton Stacks and Deques

  21. History Upper bounds Lower bounds Conclusions and questions Tarjan Focused on minimal unsortable permutations for various networks of data structures – nowadays called the basis problem. Lemma 6: “ There is an infinite set of permutations, none of which contains another as a pattern, and such that each permutation is unsortable using two parallel stacks ” Albert, Atkinson, Linton Stacks and Deques

  22. History Upper bounds Lower bounds Conclusions and questions Tarjan Focused on minimal unsortable permutations for various networks of data structures – nowadays called the basis problem. Lemma 6: “ There is an infinite set of permutations, none of which contains another as a pattern, and such that each permutation is unsortable using two parallel stacks ” Lemma 10: “ Let Y be a series of 2 stacks. Then the shortest unsortable sequence in Y is of length 7 . ” Albert, Atkinson, Linton Stacks and Deques

  23. History Upper bounds Lower bounds Conclusions and questions Tarjan Focused on minimal unsortable permutations for various networks of data structures – nowadays called the basis problem. Lemma 6: “ There is an infinite set of permutations, none of which contains another as a pattern, and such that each permutation is unsortable using two parallel stacks ” Lemma 10: “ Let Y be a series of 2 stacks. Then the shortest unsortable sequence in Y is of length 7 . ” (End of paper): “ The author has constructed a sequence of length 41 which is unsortable using three stacks in series; beyond this . . . getting hard” . Albert, Atkinson, Linton Stacks and Deques

  24. History Upper bounds Lower bounds Conclusions and questions Pratt Formalised the subpermutation relation: “ . . . the subtask relation on permutations is even more interesting than the networks we were characterizing. This relation seems to be the only partial order on permutations that arises in a simple and natural way, yet it has received no attention to date. ” Albert, Atkinson, Linton Stacks and Deques

  25. History Upper bounds Lower bounds Conclusions and questions Pratt Formalised the subpermutation relation: “ . . . the subtask relation on permutations is even more interesting than the networks we were characterizing. This relation seems to be the only partial order on permutations that arises in a simple and natural way, yet it has received no attention to date. ” Proved { 4213 , 4231 } is the basis of the restricted-input deque permutations Albert, Atkinson, Linton Stacks and Deques

  26. History Upper bounds Lower bounds Conclusions and questions Pratt Formalised the subpermutation relation: “ . . . the subtask relation on permutations is even more interesting than the networks we were characterizing. This relation seems to be the only partial order on permutations that arises in a simple and natural way, yet it has received no attention to date. ” Proved { 4213 , 4231 } is the basis of the restricted-input deque permutations Found the (infinite) bases of the class of general deque permutations and the basis of the two parallel stacks class Albert, Atkinson, Linton Stacks and Deques

  27. History Upper bounds Lower bounds Conclusions and questions Pratt Formalised the subpermutation relation: “ . . . the subtask relation on permutations is even more interesting than the networks we were characterizing. This relation seems to be the only partial order on permutations that arises in a simple and natural way, yet it has received no attention to date. ” Proved { 4213 , 4231 } is the basis of the restricted-input deque permutations Found the (infinite) bases of the class of general deque permutations and the basis of the two parallel stacks class Used formal languages in enumeration results Albert, Atkinson, Linton Stacks and Deques

  28. History Upper bounds Lower bounds Conclusions and questions Data Structures Figure: Data Structures with unknown enumerations Albert, Atkinson, Linton Stacks and Deques

  29. History Upper bounds Lower bounds Conclusions and questions Growth rates The growth rate of a sequence ( c n ) is √ c n g = lim sup n n →∞ (so c n behaves roughly like g n ) Question What is the growth rate for deques, two stacks in parallel, two stacks in series? It is known that, in all three cases, the growth rate is between 4 and 16. Also the lim sup is a true limit. Albert, Atkinson, Linton Stacks and Deques

  30. History Upper bounds Lower bounds Conclusions and questions Early pattern class history 1 Upper bounds 2 Lower bounds 3 Conclusions and questions 4 Albert, Atkinson, Linton Stacks and Deques

  31. History Upper bounds Lower bounds Conclusions and questions Upper bounds on growth rates – Stacks in series D = Delete T = Transfer I = Insert Figure: Two stacks in series IIITITDTDDTD produces 4231 from input 1234 Albert, Atkinson, Linton Stacks and Deques

  32. History Upper bounds Lower bounds Conclusions and questions Upper bounds on growth rates – Stacks in parallel D 1 = Delete I 1 = Insert D 2 = Delete I 2 = Insert Figure: Two stacks in parallel I 1 I 1 I 2 D 1 I 2 I 1 D 2 I 1 D 2 D 2 D 1 D 1 produces 24351 from input 12345 Albert, Atkinson, Linton Stacks and Deques

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend