1
0
mirror of https://github.com/golang/go synced 2024-11-25 16:57:58 -07:00
go/doc/progs/sortmain.go
Russ Cox 9f8f2e6130 convert composite literals from { } to ( ).
only non-trivial changes are in
	convlit1.go
	golden.out

R=gri
OCL=25019
CL=25024
2009-02-13 14:48:32 -08:00

67 lines
1.5 KiB
Go

// 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
import "sort"
func ints() {
data := []int(74, 59, 238, -784, 9845, 959, 905, 0, 0, 42, 7586, -5467984, 7586);
a := sort.IntArray(data);
sort.Sort(a);
if !sort.IsSorted(a) {
panic()
}
}
func strings() {
data := []string("monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday");
a := sort.StringArray(data);
sort.Sort(a);
if !sort.IsSorted(a) {
panic()
}
}
type day struct {
num int;
short_name string;
long_name string;
}
type dayArray struct {
data []*day;
}
func (p *dayArray) Len() int { return len(p.data); }
func (p *dayArray) Less(i, j int) bool { return p.data[i].num < p.data[j].num; }
func (p *dayArray) Swap(i, j int) { p.data[i], p.data[j] = p.data[j], p.data[i]; }
func days() {
Sunday := day( 0, "SUN", "Sunday" );
Monday := day( 1, "MON", "Monday" );
Tuesday := day( 2, "TUE", "Tuesday" );
Wednesday := day( 3, "WED", "Wednesday" );
Thursday := day( 4, "THU", "Thursday" );
Friday := day( 5, "FRI", "Friday" );
Saturday := day( 6, "SAT", "Saturday" );
data := []*day(&Tuesday, &Thursday, &Sunday, &Monday, &Friday);
a := dayArray(data);
sort.Sort(&a);
if !sort.IsSorted(&a) {
panic()
}
for i, d := range data {
print(d.long_name, " ")
}
print("\n")
}
func main() {
ints();
strings();
days();
}