select_tree/key_test.go

15 lines
164 B
Go
Raw Normal View History

2020-09-28 09:22:43 +00:00
package main
import "testing"
func Compare(n1, n2 *Node) int {
vlen := len(n1.Keys)
for i := 0; i < vlen; i++ {
}
return 0
}
func TestKey(t *testing.T) {
}