-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path450.go
55 lines (47 loc) · 1.38 KB
/
450.go
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
// UVa 450 - Little Black Book
package main
import (
"bufio"
"fmt"
"io"
"os"
"sort"
"strings"
)
type faculty struct{ title, firstName, lastName, address, department, homePhone, workPhone, campusBox string }
func parse(line, department string) faculty {
token := strings.Split(line, ",")
return faculty{token[0], token[1], token[2], token[3], department, token[4], token[5], token[6]}
}
func output(out io.Writer, faculties []faculty) {
for _, f := range faculties {
fmt.Fprintln(out, "----------------------------------------")
fmt.Fprintf(out, "%s %s %s\n%s\n", f.title, f.firstName, f.lastName, f.address)
fmt.Fprintf(out, "Department: %s\n", f.department)
fmt.Fprintf(out, "Home Phone: %s\n", f.homePhone)
fmt.Fprintf(out, "Work Phone: %s\n", f.workPhone)
fmt.Fprintf(out, "Campus Box: %s\n", f.campusBox)
}
}
func main() {
in, _ := os.Open("450.in")
defer in.Close()
out, _ := os.Create("450.out")
defer out.Close()
s := bufio.NewScanner(in)
s.Split(bufio.ScanLines)
var n int
var line string
var faculties []faculty
s.Scan()
for fmt.Sscanf(s.Text(), "%d", &n); n > 0 && s.Scan(); n-- {
for department := s.Text(); s.Scan(); {
if line = s.Text(); line == "" {
break
}
faculties = append(faculties, parse(line, department))
}
}
sort.Slice(faculties, func(i, j int) bool { return faculties[i].lastName < faculties[j].lastName })
output(out, faculties)
}