My favorites
▼
|
Sign in
sibirjak
Russischer Bär source code repository
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
asperform
/
com
/
sibirjak
/
asperform
/
collectiontests
/
examples
/
map
/
OrderedMapRawTest.as
r27
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
package com.sibirjak.asperform.collectiontests.examples.map {
import com.sibirjak.asperform.collectiontests.CollectionTestCase;
/**
* @author Jens Struwe 29.04.2010
*/
public class OrderedMapRawTest extends CollectionTestCase {
private var _map : OrderedMapRaw;
/*
* Test neutralisation
*/
override protected function createCollection() : * {
_map = new OrderedMapRaw();
return _map;
}
override protected function fill() : void {
for (var i : uint = 0; i < _numItems; i++) {
_map.addLast(_data[i], _data[i]);
}
}
override protected function get size() : uint {
return _map.size;
}
/*
* Tests
*/
public function test_addFirst() : void {
for (var i : uint = 0; i < _numItems; i++) {
_map.addFirst(_data[i], _data[i]);
}
}
public function test_addLast() : void {
for (var i : uint = 0; i < _numItems; i++) {
_map.addLast(_data[i], _data[i]);
}
}
public function test_hasKey() : void {
for (var i : uint = 0; i < _numItems; i++) {
_map.hasKey(_data[i]);
}
}
public function test_removeKey() : void {
for (var i : uint = 0; i < _numItems; i++) {
_map.removeKey(_data[i]);
}
}
public function test_removeFirst() : void {
for (var i : uint = 0; i < _numItems; i++) {
_map.removeFirst();
}
}
public function test_removeLast() : void {
for (var i : uint = 0; i < _numItems; i++) {
_map.removeFirst();
}
}
}
}
Show details
Hide details
Change log
r9
by jens.struwe on Apr 28, 2010
Diff
[DEV] Ordered map and treap example
Go to:
...orm/collectiontests/HeapTests.as
...rm/collectiontests/TreapTests.as
...s/examples/OrderedMapRawTests.as
...ts/examples/map/OrderedMapRaw.as
...xamples/map/OrderedMapRawTest.as
Project members,
sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 1455 bytes, 71 lines
View raw file
Powered by
Google Project Hosting