mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
566 B
31 lines
566 B
5 years ago
|
package main
|
||
5 years ago
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
|
||
|
"github.com/01-edu/z01"
|
||
|
|
||
5 years ago
|
correct "./correct"
|
||
5 years ago
|
student "./student"
|
||
|
)
|
||
|
|
||
5 years ago
|
func main() {
|
||
5 years ago
|
i := 0
|
||
|
for i < z01.SliceLen {
|
||
5 years ago
|
table1 := z01.MultRandIntBetween(-100, 100)
|
||
5 years ago
|
|
||
5 years ago
|
tableCopyBefore := make([]int, len(table1))
|
||
|
copy(tableCopyBefore, table1)
|
||
5 years ago
|
|
||
5 years ago
|
table2 := make([]int, len(table1))
|
||
|
copy(table2, table1)
|
||
5 years ago
|
|
||
5 years ago
|
student.SortIntegerTable(table1)
|
||
5 years ago
|
correct.SortIntegerTable(table2)
|
||
5 years ago
|
if !reflect.DeepEqual(table1, table2) {
|
||
|
z01.Fatalf("SortIntegerTable(%v), table1 == %v instead of %v ", tableCopyBefore, table1, table2)
|
||
5 years ago
|
}
|
||
|
i++
|
||
|
}
|
||
|
}
|