[5e82d56] | 1 | #pragma once |
---|
| 2 | |
---|
| 3 | #include "collection.hfa" |
---|
| 4 | |
---|
| 5 | forall( dtype T ) { |
---|
| 6 | struct Queue { |
---|
| 7 | inline Collection; // Plan 9 inheritance |
---|
| 8 | T * last; // last element, or 0 if queue is empty. |
---|
| 9 | }; |
---|
| 10 | |
---|
| 11 | inline { |
---|
| 12 | // wrappers to make Collection have T |
---|
[a78c3ff] | 13 | T & head( Queue(T) & q ) with( q ) { |
---|
| 14 | return *(T *)head( (Collection &)q ); |
---|
[5e82d56] | 15 | } // post: empty() & head() == 0 | !empty() & head() in *q |
---|
| 16 | |
---|
| 17 | void ?{}( Queue(T) &, const Queue(T) & ) = void; // no copy |
---|
| 18 | Queue(T) & ?=?( const Queue(T) & ) = void; // no assignment |
---|
| 19 | |
---|
| 20 | void ?{}( Queue(T) & q ) with( q ) { |
---|
| 21 | ((Collection &)q){}; |
---|
| 22 | last = 0p; |
---|
| 23 | } // post: empty() |
---|
| 24 | |
---|
[a78c3ff] | 25 | T & tail( Queue(T) & q ) with( q ) { |
---|
| 26 | return *last; |
---|
[5e82d56] | 27 | } |
---|
| 28 | |
---|
[a5a67ab8] | 29 | T * succ( Queue(T) & q, T * n ) with( q ) { // pre: *n in *q |
---|
[7c1144b] | 30 | #ifdef __CFA_DEBUG__ |
---|
[a5a67ab8] | 31 | if ( ! listed( n ) ) abort( "(Queue &)%p.succ( %p ) : Node is not on a list.", &q, n ); |
---|
[7c1144b] | 32 | #endif // __CFA_DEBUG__ |
---|
[58870e6b] | 33 | return (Next( n ) == n) ? 0p : Next( n ); |
---|
[5e82d56] | 34 | } // post: n == tail() & succ(n) == 0 | n != tail() & *succ(n) in *q |
---|
| 35 | |
---|
[a78c3ff] | 36 | void addHead( Queue(T) & q, T & n ) with( q ) { |
---|
[7c1144b] | 37 | #ifdef __CFA_DEBUG__ |
---|
[a78c3ff] | 38 | if ( listed( &n ) ) abort( "(Queue &)%p.addHead( %p ) : Node is already on another list.", &q, &n ); |
---|
[7c1144b] | 39 | #endif // __CFA_DEBUG__ |
---|
[5e82d56] | 40 | if ( last ) { |
---|
[58870e6b] | 41 | Next( &n ) = &head( q ); |
---|
[a78c3ff] | 42 | q.root = &n; |
---|
[5e82d56] | 43 | } else { |
---|
[a78c3ff] | 44 | root = last = &n; |
---|
[58870e6b] | 45 | Next( &n ) = &n; // last node points to itself |
---|
[5e82d56] | 46 | } |
---|
| 47 | } |
---|
| 48 | |
---|
[a78c3ff] | 49 | void addTail( Queue(T) & q, T & n ) with( q ) { |
---|
[7c1144b] | 50 | #ifdef __CFA_DEBUG__ |
---|
[a78c3ff] | 51 | if ( listed( &n ) ) abort( "(Queue &)%p.addTail( %p ) : Node is already on another list.", &q, &n ); |
---|
[7c1144b] | 52 | #endif // __CFA_DEBUG__ |
---|
[58870e6b] | 53 | if ( last ) Next( last ) = &n; |
---|
[a78c3ff] | 54 | else root = &n; |
---|
| 55 | last = &n; |
---|
[58870e6b] | 56 | Next( &n ) = &n; // last node points to itself |
---|
[5e82d56] | 57 | } |
---|
| 58 | |
---|
[a78c3ff] | 59 | void add( Queue(T) & q, T & n ) with( q ) { |
---|
[5e82d56] | 60 | addTail( q, n ); |
---|
| 61 | } |
---|
| 62 | |
---|
[a78c3ff] | 63 | T & dropHead( Queue(T) & q ) with( q ) { |
---|
[a5a67ab8] | 64 | T & t = head( q ); |
---|
[5e82d56] | 65 | if ( root ) { |
---|
[58870e6b] | 66 | root = Next( root ); |
---|
[a5a67ab8] | 67 | if ( &head( q ) == &t ) { |
---|
[5e82d56] | 68 | root = last = 0p; // only one element |
---|
| 69 | } |
---|
[58870e6b] | 70 | Next( &t ) = 0p; |
---|
[5e82d56] | 71 | } |
---|
[a5a67ab8] | 72 | return t; |
---|
[5e82d56] | 73 | } |
---|
| 74 | |
---|
[a78c3ff] | 75 | T & drop( Queue(T) & q ) with( q ) { |
---|
[5e82d56] | 76 | return dropHead( q ); |
---|
| 77 | } |
---|
| 78 | |
---|
[a78c3ff] | 79 | void remove( Queue(T) & q, T & n ) with( q ) { // O(n) |
---|
[7c1144b] | 80 | #ifdef __CFA_DEBUG__ |
---|
[a78c3ff] | 81 | if ( ! listed( (Colable &)n ) ) abort( "(Queue &)%p.remove( %p ) : Node is not on a list.", &q, &n ); |
---|
[7c1144b] | 82 | #endif // __CFA_DEBUG__ |
---|
[58870e6b] | 83 | T * prev = 0p; |
---|
| 84 | T * curr = (T *)root; |
---|
[5e82d56] | 85 | for ( ;; ) { |
---|
[58870e6b] | 86 | if ( &n == curr ) { // found => remove |
---|
[a5a67ab8] | 87 | if ( (T *)root == &n ) { |
---|
[5e82d56] | 88 | dropHead( q ); |
---|
[a5a67ab8] | 89 | } else if ( last == &n ) { |
---|
[58870e6b] | 90 | last = prev; |
---|
| 91 | Next( last ) = last; |
---|
[5e82d56] | 92 | } else { |
---|
| 93 | Next( prev ) = Next( curr ); |
---|
| 94 | } |
---|
[58870e6b] | 95 | Next( &n ) = 0p; |
---|
[5e82d56] | 96 | break; |
---|
| 97 | } |
---|
| 98 | // not found => error |
---|
[7c1144b] | 99 | #ifdef __CFA_DEBUG__ |
---|
[58870e6b] | 100 | if ( curr == last ) abort( "(Queue &)%p.remove( %p ) : Node is not in list.", &q, &n ); |
---|
[7c1144b] | 101 | #endif // __CFA_DEBUG__ |
---|
[58870e6b] | 102 | prev = curr; |
---|
| 103 | curr = Next( curr ); |
---|
[5e82d56] | 104 | } |
---|
| 105 | } // post: ! listed( n ) |
---|
| 106 | |
---|
[a78c3ff] | 107 | T & dropTail( Queue(T) & q ) with( q ) { // O(n) |
---|
| 108 | T & n = tail( q ); |
---|
| 109 | return &n ? remove( q, n ), n : *0p; |
---|
[5e82d56] | 110 | } |
---|
| 111 | |
---|
| 112 | // Transfer the "from" list to the end of queue sequence; the "from" list is empty after the transfer. |
---|
| 113 | void transfer( Queue(T) & q, Queue(T) & from ) with( q ) { |
---|
| 114 | if ( empty( from ) ) return; // "from" list empty ? |
---|
| 115 | if ( empty( q ) ) { // "to" list empty ? |
---|
| 116 | root = from.root; |
---|
| 117 | } else { // "to" list not empty |
---|
[58870e6b] | 118 | Next( last ) = &head( from ); |
---|
[5e82d56] | 119 | } |
---|
| 120 | last = from.last; |
---|
| 121 | from.root = from.last = 0p; // mark "from" list empty |
---|
| 122 | } |
---|
| 123 | |
---|
| 124 | // Transfer the "from" list up to node "n" to the end of queue list; the "from" list becomes the list after node "n". |
---|
| 125 | // Node "n" must be in the "from" list. |
---|
[a78c3ff] | 126 | void split( Queue(T) & q, Queue(T) & from, T & n ) with( q ) { |
---|
[7c1144b] | 127 | #ifdef __CFA_DEBUG__ |
---|
[a78c3ff] | 128 | if ( ! listed( (Colable &)n ) ) abort( "(Queue &)%p.split( %p ) : Node is not on a list.", &q, &n ); |
---|
[7c1144b] | 129 | #endif // __CFA_DEBUG__ |
---|
[5e82d56] | 130 | Queue(T) to; |
---|
| 131 | to.root = from.root; // start of "to" list |
---|
[a78c3ff] | 132 | to.last = &n; // end of "to" list |
---|
[58870e6b] | 133 | from.root = Next( &n ); // start of "from" list |
---|
[a5a67ab8] | 134 | if ( &n == &head( from ) ) { // last node in list ? |
---|
[5e82d56] | 135 | from.root = from.last = 0p; // mark "from" list empty |
---|
| 136 | } else { |
---|
[58870e6b] | 137 | Next( &n ) = &n; // fix end of "to" list |
---|
[5e82d56] | 138 | } |
---|
| 139 | transfer( q, to ); |
---|
| 140 | } |
---|
| 141 | } // distribution |
---|
| 142 | } // distribution |
---|
| 143 | |
---|
| 144 | forall( dtype T ) { |
---|
| 145 | struct QueueIter { |
---|
| 146 | inline ColIter; // Plan 9 inheritance |
---|
| 147 | }; |
---|
| 148 | |
---|
| 149 | inline { |
---|
| 150 | void ?{}( QueueIter(T) & qi ) with( qi ) { |
---|
| 151 | ((ColIter &)qi){}; |
---|
| 152 | } // post: curr == 0p |
---|
| 153 | |
---|
| 154 | // create an iterator active in Queue q |
---|
| 155 | void ?{}( QueueIter(T) & qi, Queue(T) & q ) with( qi ) { |
---|
[a78c3ff] | 156 | curr = &head( q ); |
---|
[5e82d56] | 157 | } // post: curr = {e in q} |
---|
| 158 | |
---|
[a78c3ff] | 159 | void ?{}( QueueIter(T) & qi, T & start ) with( qi ) { |
---|
| 160 | curr = &start; |
---|
[5e82d56] | 161 | } // post: curr = {e in q} |
---|
| 162 | |
---|
| 163 | // make existing iterator active in Queue q |
---|
| 164 | void over( QueueIter(T) & qi, Queue(T) & q ) with( qi ) { |
---|
[a78c3ff] | 165 | curr = &head( q ); |
---|
[5e82d56] | 166 | } // post: curr = {e in q} |
---|
| 167 | |
---|
[3d0560d] | 168 | bool ?>>?( QueueIter(T) & qi, T && tp ) with( qi ) { |
---|
[5e82d56] | 169 | if ( curr ) { |
---|
[3d0560d] | 170 | &tp = Curr( qi ); |
---|
[58870e6b] | 171 | T * n = Next( Curr( qi ) ); |
---|
[5e82d56] | 172 | curr = (n == Curr( qi ) ) ? 0p : n; |
---|
[3d0560d] | 173 | } else &tp = 0p; |
---|
| 174 | return &tp != 0p; |
---|
[5e82d56] | 175 | } |
---|
| 176 | // post: elts == null & !operator>>(tp) | elts != null & *tp' in elts & elts' == elts - *tp & operator>>(tp) |
---|
| 177 | } // distribution |
---|
| 178 | } // distribution |
---|