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
|
// testing the impl from the scala library
//package test5
import scala.collection._
import scala.collection.immutable._
import scala.collection.generic._
import scala.collection.mutable.Builder
object Test {
def vector(label: String, n: Int): Vector[String] = {
val a = new VectorBuilder[String]
for (i <- 0 until n)
a += (label + i)
val res = a.result
assertVector(res, label, 0, n)
}
def vectorForward(label: String, n: Int): Vector[String] = {
var a: Vector[String] = Vector.empty
for (i <- 0 until n)
a = a :+ (label + i)
assertVector(a, label, 0, n)
}
def vectorBackward(label: String, n: Int): Vector[String] = {
var a: Vector[String] = Vector.empty
for (i <- 0 until n)
a = (label + (n-1-i)) +: a
assertVector(a, label, 0, n)
}
def assertVector[V](a: Vector[V], label: String, start: Int, end: Int) = {
assertVectorIndexed(a, label, start, end)
assertVectorIterated(a, label, start, end)
}
def assertVectorIndexed[V](a: Vector[V], label: String, start: Int, end: Int) = {
val res = a
assert(res.length == (end-start), res.length+"!="+(end-start)+" ("+res+")")
for (i <- start until end) {
assert(res(i) == (label + i), ""+res(i)+"!="+(label + i))
}
res
}
def assertVectorIterated[V](a: Vector[V], label: String, start: Int, end: Int) = {
val res = a
assert(res.length == (end-start), res.length+"!="+(end-start)+" ("+res+")")
var i = start
var it = res.iterator
while(it.hasNext) {
val x = it.next()
assert(x == (label + i), x.toString+"!="+(label + i))
i += 1
}
assert(i == end)
res
}
def test1() = {
println("===== test1 =====")
val N = 150000
val a = vector("a", N)
val b = vectorForward("b", N)
val c = vectorBackward("b", N)
()
// //println(a)
}
def test2() = {
println("===== test2 =====")
var a: Vector[String] = Vector.empty
val rand = new java.util.Random
val N = 150000
var min = N/2//rand.nextInt(N)
var max = min
val chunkLimit = 11
def nextChunkSize = 3 //rand.nextInt(chunkLimit)
def seqBack() = for (i <- 0 until Math.min(nextChunkSize, N-max)) { a = a :+ ("a"+max); max += 1 }
def seqFront() = for (i <- 0 until Math.min(nextChunkSize, min)) { min -= 1; a = ("a"+min) +: a }
try {
while (min > 0 || max < N) {
seqFront()
seqBack()
}
} catch {
case ex =>
//println("----------------")
//a.debug
throw ex
}
assertVector(a, "a", 0, N)
}
def test3() = {
println("===== test3 =====")
val N = 150000
val a = vector("a", N)
val pos = scala.util.Random.shuffle(scala.collection.mutable.WrappedArray.make[Int](Array.tabulate[Int](N)(i => i)))
var b = a
{
var i = 0
while (i < N) {
b = b.updated(pos(i), "b"+(pos(i)))
i += 1
}
assertVector(b, "b", 0, N)
}
// //println(a)
}
def test4() = {
println("===== test4 =====")
val N = 150000
val a = vectorForward("a", N)
{
var i = 0
var it = a
while (i < N) {
assert(it.length == (N-i), it.length+" items at iteration "+i)
val x = it(0)
val y = it(N-i-1)
assert(x == "a"+i, x+"!=a"+i)
assert(y == "a"+(N-1), y+"!=a"+(N-1))
it = it.drop(1)
i += 1
}
assert(it.length == 0)
}
// //println(a)
}
def test5() = {
println("===== test5 =====")
val N = 150000
val a = vectorBackward("a", N)
{
var i = 0
var it = a
while (i < N) {
assert(it.length == (N-i), it.length+" items at iteration "+i)
val x = it(0)
val y = it(N-i-1)
// println("x " + x + "/" + i)
// println("y " + y)
assert(x == "a0", x+"!=a0")
assert(y == "a"+(N-i-1), y+"!=a"+(N-i-1))
it = it.dropRight(1)
i += 1
}
assert(it.length == 0)
}
}
def main(args: Array[String]) = {
test1()
test2()
test3()
test4()
test5()
println("done")
}
}
|