2008-08-29 12:10:23 -06:00
|
|
|
// $G $F.go && $L $F.$A && ./$A.out
|
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2009-04-16 21:52:37 -06:00
|
|
|
import "container/vector"
|
2008-08-29 12:10:23 -06:00
|
|
|
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type S struct {
|
2010-03-30 11:34:57 -06:00
|
|
|
val int
|
2008-08-29 12:10:23 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (p *S) Init(val int) *S {
|
2010-03-30 11:34:57 -06:00
|
|
|
p.val = val
|
|
|
|
return p
|
2008-08-29 12:10:23 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func test0() {
|
2010-03-30 11:34:57 -06:00
|
|
|
v := new(vector.Vector)
|
2008-08-29 12:10:23 -06:00
|
|
|
if v.Len() != 0 {
|
2010-03-30 11:34:57 -06:00
|
|
|
print("len = ", v.Len(), "\n")
|
|
|
|
panic("fail")
|
2008-08-29 12:10:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func test1() {
|
2010-03-30 11:34:57 -06:00
|
|
|
var a [1000]*S
|
2008-08-29 12:10:23 -06:00
|
|
|
for i := 0; i < len(a); i++ {
|
2009-11-24 14:43:18 -07:00
|
|
|
a[i] = new(S).Init(i)
|
2008-08-29 12:10:23 -06:00
|
|
|
}
|
|
|
|
|
2010-03-30 11:34:57 -06:00
|
|
|
v := new(vector.Vector)
|
2008-08-29 12:10:23 -06:00
|
|
|
for i := 0; i < len(a); i++ {
|
2010-03-30 11:34:57 -06:00
|
|
|
v.Insert(0, a[i])
|
2009-11-24 14:43:18 -07:00
|
|
|
if v.Len() != i+1 {
|
2010-03-30 11:34:57 -06:00
|
|
|
print("len = ", v.Len(), "\n")
|
|
|
|
panic("fail")
|
2008-08-29 12:10:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < v.Len(); i++ {
|
2010-03-30 11:34:57 -06:00
|
|
|
x := v.At(i).(*S)
|
2009-11-24 14:43:18 -07:00
|
|
|
if x.val != v.Len()-i-1 {
|
2010-03-30 11:34:57 -06:00
|
|
|
print("expected ", i, ", found ", x.val, "\n")
|
|
|
|
panic("fail")
|
2008-08-29 12:10:23 -06:00
|
|
|
}
|
|
|
|
}
|
2008-12-19 04:05:37 -07:00
|
|
|
|
2008-08-29 12:10:23 -06:00
|
|
|
for v.Len() > 10 {
|
2009-11-24 14:43:18 -07:00
|
|
|
v.Delete(10)
|
2008-08-29 12:10:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func main() {
|
2010-03-30 11:34:57 -06:00
|
|
|
test0()
|
|
|
|
test1()
|
2008-08-29 12:10:23 -06:00
|
|
|
}
|