functional data structures for typed racket
play

Functional Data Structures for Typed Racket Hari Prashanth and Sam - PowerPoint PPT Presentation

Functional Data Structures for Typed Racket Hari Prashanth and Sam Tobin-Hochstadt Northeastern University 1 Motivation Typed Racket has very few data structures 2 Motivation Typed Racket has very few data structures Lists 3 Motivation


  1. Functional Data Structures for Typed Racket Hari Prashanth and Sam Tobin-Hochstadt Northeastern University 1

  2. Motivation Typed Racket has very few data structures 2

  3. Motivation Typed Racket has very few data structures Lists 3

  4. Motivation Typed Racket has very few data structures Lists Vectors 4

  5. Motivation Typed Racket has very few data structures Lists Vectors Hash Tables 5

  6. Motivation Typed Racket has very few data structures Lists Vectors Hash Tables Practical use of Typed Racket 6

  7. Outline Motivation Typed Racket in a Nutshell Purely Functional Data Structures Benchmarks Typed Racket Evaluation Conclusion 7

  8. Function definition in Racket #lang racket ; Computes the length of a given list of elements ; length : list-of-elems -> natural (define (length list) (if (null? list) 0 (add1 (length (cdr list))))) 8

  9. Function definition in Typed Racket #lang typed/racket ; Computes the length of a given list of integers (: length : (Listof Integer) -> Natural) (define (length list) (if (null? list) 0 (add1 (length (cdr list))))) 9

  10. Function definition in Typed Racket #lang typed/racket ; Computes the length of a given list of elements (: length : (All (A) ((Listof A) -> Natural))) (define (length list) (if (null? list) 0 (add1 (length (cdr list))))) 10

  11. Data definition in Racket #lang racket ; Data definition of tree of integers ; A Tree is one of ; - null ; - BTree (define-struct BTree (left elem right)) ; left and right are of type Tree ; elem is an Integer 11

  12. Data definition in Typed Racket #lang typed/racket ; Data definition of tree of integers (define-type Tree (U Null BTree)) (define-struct: BTree ([left : Tree] [elem : Integer] [right : Tree])) 12

  13. Data definition in Typed Racket #lang typed/racket ; Polymorphic definition of Tree (define-type (Tree A) (U Null (BTree A))) (define-struct: (A) BTree ([left : (Tree A)] [elem : A] [right : (Tree A)])) 13

  14. Outline Motivation Typed Racket in a Nutshell Purely Functional Data Structures Benchmarks Typed Racket Evaluation Conclusion 14

  15. Destructive and Non-destructive update e 15

  16. Destructive and Non-destructive update e ⇒ Destructive update 16

  17. Destructive and Non-destructive update e ⇒ Non-destructive update 17

  18. Functional Queue (define-struct: (A) Queue ([front : (Listof A)] [rear : (Listof A)])) 18

  19. Functional Queue (define-struct: (A) Queue ([front : (Listof A)] [rear : (Listof A)])) 19

  20. Functional Queue (: dequeue : (All (A) ((Queue A) -> (Queue A)))) (define (dequeue que) (let ([front (cdr (Queue-front que))] [rear (Queue-rear que)]) (if (null? front) (Queue (reverse rear) null) (Queue front rear)))) 20

  21. Functional Queue Queue q (for ([id (in-range 100)]) (dequeue q)) 21

  22. Banker’s Queue [Okasaki 1998] Lazy evaluation solves this problem 22

  23. Banker’s Queue [Okasaki 1998] Lazy evaluation solves this problem (: val : (Promise Exact-Rational)) (define val (delay (/ 5 0))) 23

  24. Banker’s Queue [Okasaki 1998] Lazy evaluation solves this problem Streams (define-type (Stream A) (Pair A (Promise (Stream A)))) 24

  25. Banker’s Queue [Okasaki 1998] Lazy evaluation solves this problem (define-struct: (A) Queue ([front : (Stream A)] [lenf : Integer] [rear : (Stream A)] [lenr : Integer])) Invariant lenf >= lenr 25

  26. Banker’s Queue [Okasaki 1998] Lazy evaluation solves this problem (: check : (All (A) (Stream A) Integer (Stream A) Integer -> (Queue A))) (define (check front lenf rear lenr) (if (>= lenf lenr) (make-Queue front lenf rear lenr) (make-Queue (stream-append front (stream-reverse rear)) (+ lenf lenr) null 0))) 26

  27. Banker’s Queue [Okasaki 1998] Lazy evaluation solves this problem (make-Queue (stream-append front (stream-reverse rear)) (+ lenf lenr) null 0) 27

  28. Banker’s Queue [Okasaki 1998] Lazy evaluation solves this problem Amortized running time of O(1) for the operations enqueue , dequeue and head 28

  29. Real-Time Queues [Hood & Melville 81] 29

  30. Real-Time Queues [Hood & Melville 81] Eliminating amortization by Scheduling 30

  31. Real-Time Queues [Hood & Melville 81] Eliminating amortization by Scheduling Banker’s Queue - reverse is a forced completely 31

  32. Real-Time Queues [Hood & Melville 81] Eliminating amortization by Scheduling (: rotate : (All (A) ((Stream A) (Listof A) (Stream A) -> (Stream A)))) (define (rotate front rear accum) (if (empty-stream? front) (stream-cons (car rear) accum) (stream-cons (stream-car front) (rotate (stream-cdr front) (cdr rear) (stream-cons (car rear) accum))))) Incremental reversing 32

  33. Real-Time Queues [Hood & Melville 81] Eliminating amortization by Scheduling Worst-case running time of O(1) for the operations enqueue , dequeue and head 33

  34. Binary Random Access Lists [Okasaki 1998] Nat is one of - 0 - (add1 Nat) List is one of - null - (cons elem List) 34

  35. Binary Random Access Lists [Okasaki 1998] Nat is one of - 0 - (add1 Nat) List is one of - null - (cons elem List) cons corresponds to increment cdr corresponds to decrement append corresponds to addition 35

  36. Binary Random Access Lists [Okasaki 1998] (define-type (RAList A) (Listof (Digit A))) 36

  37. Binary Random Access Lists [Okasaki 1998] (define-type (RAList A) (Listof (Digit A))) (define-type (Digit A) (U Zero (One A))) 37

  38. Binary Random Access Lists [Okasaki 1998] (define-struct: Zero ()) 38

  39. Binary Random Access Lists [Okasaki 1998] (define-struct: Zero ()) (define-struct: (A) One ([fst : (Tree A)])) 39

  40. Binary Random Access Lists [Okasaki 1998] (define-type (Tree A) (U (Leaf A) (Node A))) 40

  41. Binary Random Access Lists [Okasaki 1998] (define-type (Tree A) (U (Leaf A) (Node A))) (define-struct: (A) Leaf ([fst : A])) 41

  42. Binary Random Access Lists [Okasaki 1998] (define-type (Tree A) (U (Leaf A) (Node A))) (define-struct: (A) Leaf ([fst : A])) (define-struct: (A) Node ([size : Integer] [left : (Tree A)] [right : (Tree A)])) 42

  43. Binary Random Access Lists [Okasaki 1998] (define-type (RAList A) (Listof (Digit A))) 43

  44. Binary Random Access Lists [Okasaki 1998] (define-type (RAList A) (Listof (Digit A))) 44

  45. Binary Random Access Lists [Okasaki 1998] (define-type (RAList A) (Listof (Digit A))) 45

  46. Binary Random Access Lists [Okasaki 1998] (define-type (RAList A) (Listof (Digit A))) 46

  47. Binary Random Access Lists [Okasaki 1998] (define-type (RAList A) (Listof (Digit A))) 47

  48. Binary Random Access Lists [Okasaki 1998] (define-type (RAList A) (Listof (Digit A))) 48

  49. Binary Random Access Lists [Okasaki 1998] (define-type (RAList A) (Listof (Digit A))) 49

  50. Binary Random Access Lists [Okasaki 1998] (define-type (RAList A) (Listof (Digit A))) Worst-case running time of O(log n) for the operations cons , car , cdr , lookup and update 50

  51. VLists [Bagwell 2002] (define-struct: (A) Base ([previous : (U Null (Base A))] [elems : (RAList A)])) (define-struct: (A) VList ([offset : Natural] [base : (Base A)] [size : Natural])) 51

  52. VLists [Bagwell 2002] List with one element - 6 52

  53. VLists [Bagwell 2002] cons 5 and 4 to the previous list 53

  54. VLists [Bagwell 2002] cons 3 and 2 to the previous list 54

  55. VLists [Bagwell 2002] cdr of the previous list 55

  56. VLists [Bagwell 2002] Random access takes O(1) average and O(log n) in worst-case. 56

  57. Our library Library has 30 data structures which include Variants of Queues Variants of Deques Variants of Heaps Variants of Lists Red-Black Trees Tries Sets Hash Lists 57

  58. Our library Library has 30 data structures 58

  59. Our library Library has 30 data structures Data structures have several utility functions 59

  60. Our library Library has 30 data structures Data structures have several utility functions Our implementations follows the original work 60

  61. Outline Motivation Typed Racket in a Nutshell Purely Functional Data Structures Benchmarks Typed Racket Evaluation Conclusion 61

  62. Benchmarks (foldl enqueue que list-of-100000-elems) 62

  63. Benchmarks 63

  64. Benchmarks 64

  65. Benchmarks 65

  66. Benchmarks 66

  67. Outline Motivation Typed Racket in a Nutshell Purely Functional Data Structures Benchmarks Typed Racket Evaluation Conclusion 67

  68. ML to Typed Racket ML idioms can be easily ported to Typed Racket 68

  69. ML to Typed Racket ML idioms can be easily ported to Typed Racket type 'a Queue = int * 'a Stream * int * 'a Stream (define-struct: (A) Queue ([lenf : Integer] [front : (Stream A)] [lenr : Integer] [rear : (Stream A)])) 69

  70. ML to Typed Racket ML idioms can be easily ported to Typed Racket type 'a Queue = 'a list * int * 'a list susp * int * 'a list (define-struct: (A) Queue ([pref : (Listof A)] [lenf : Integer] [front : (Promise (Listof A))] [lenr : Integer] [rear : (Listof A)])) 70

  71. Optimizer in Typed Racket Optimizer based on type information 71

  72. Optimizer in Typed Racket 72

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