1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
/*
* Copyright (C)2005-2012 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/**
A linked-list of elements. The list is composed of two-elements arrays
that are chained together. It is optimized so that adding or removing an
element does not imply copying the whole array content every time.
**/
class List<T> {
private var h : Array<Dynamic>;
private var q : Array<Dynamic>;
/**
The length of `this` List.
**/
public var length(default,null) : Int;
/**
Creates a new empty list.
**/
public function new() {
length = 0;
}
/**
Adds element `item` at the end of `this` List.
`this.length` increases by 1.
**/
public function add( item : T ) {
var x:Array<Dynamic> = #if neko untyped __dollar__array(item,null) #else [item] #end;
if( h == null )
h = x;
else
q[1] = x;
q = x;
length++;
}
/**
Adds element `item` at the beginning of `this` List.
`this.length` increases by 1.
**/
public function push( item : T ) {
var x : Array<Dynamic> = #if neko
untyped __dollar__array(item,h)
#else
[item,h]
#end;
h = x;
if( q == null )
q = x;
length++;
}
/**
Returns the first element of `this` List, or null if no elements exist.
This function does not modify `this` List.
**/
public function first() : Null<T> {
return if( h == null ) null else h[0];
}
/**
Returns the last element of `this` List, or null if no elements exist.
This function does not modify `this` List.
**/
public function last() : Null<T> {
return if( q == null ) null else q[0];
}
/**
Returns the first element of `this` List, or null if no elements exist.
The element is removed from `this` List.
**/
public function pop() : Null<T> {
if( h == null )
return null;
var x = h[0];
h = h[1];
if( h == null )
q = null;
length--;
return x;
}
/**
Tells if `this` List is empty.
**/
public function isEmpty() : Bool {
return (h == null);
}
/**
Empties `this` List.
This function does not traverse the elements, but simply sets the
internal references to null and `this.length` to 0.
**/
public function clear() : Void {
h = null;
q = null;
length = 0;
}
/**
Removes the first occurence of `v` in `this` List.
If `v` is found by checking standard equality, it is removed from `this`
List and the function returns true.
Otherwise, false is returned.
**/
public function remove( v : T ) : Bool {
var prev = null;
var l = h;
while( l != null ) {
if( l[0] == v ) {
if( prev == null )
h = l[1];
else
prev[1] = l[1];
if( q == l )
q = prev;
length--;
return true;
}
prev = l;
l = l[1];
}
return false;
}
/**
Returns an iterator on the elements of the list.
**/
public inline function iterator() : ListIterator<T> {
return new ListIterator<T>(h);
}
/**
Returns a string representation of `this` List.
The result is enclosed in { } with the individual elements being
separated by a comma.
**/
public function toString() {
var s = new StringBuf();
var first = true;
var l = h;
s.add("{");
while( l != null ) {
if( first )
first = false;
else
s.add(", ");
s.add(Std.string(l[0]));
l = l[1];
}
s.add("}");
return s.toString();
}
/**
Returns a string representation of `this` List, with `sep` separating
each element.
**/
public function join(sep : String) {
var s = new StringBuf();
var first = true;
var l = h;
while( l != null ) {
if( first )
first = false;
else
s.add(sep);
s.add(l[0]);
l = l[1];
}
return s.toString();
}
/**
Returns a list filtered with `f`. The returned list will contain all
elements for which `f(x) == true`.
**/
public function filter( f : T -> Bool ) {
var l2 = new List();
var l = h;
while( l != null ) {
var v = l[0];
l = l[1];
if( f(v) )
l2.add(v);
}
return l2;
}
/**
Returns a new list where all elements have been converted by the
function `f`.
**/
public function map<X>(f : T -> X) : List<X> {
var b = new List();
var l = h;
while( l != null ) {
var v = l[0];
l = l[1];
b.add(f(v));
}
return b;
}
}
private class ListIterator<T> {
var head:Array<Dynamic>;
var val:Dynamic;
public inline function new(head:Array<Dynamic>) {
this.head = head;
this.val = null;
}
public inline function hasNext():Bool {
return head != null;
}
public inline function next():T {
val = head[0];
head = head[1];
return val;
}
}
|