Go의 |
|
package main
|
|
import "fmt"
import "sort"
|
|
func main() {
|
|
정렬 메서드는 내장 타입에만 해당합니다. 다음은 문자열에 대한 예시입니다. 참고로 정렬은 제자리 정렬(in-place)이므로, 이는 전달된 슬라이스를 변형시키며 새로운 슬라이스를 반환하진 않습니다. |
strs := []string{"c", "a", "b"}
sort.Strings(strs)
fmt.Println("Strings:", strs)
|
|
ints := []int{7, 2, 4}
sort.Ints(ints)
fmt.Println("Ints: ", ints)
|
또한 |
s := sort.IntsAreSorted(ints)
fmt.Println("Sorted: ", s)
}
|
프로그램을 실행하면 정렬된 문자열과 정수 슬라이스 그리고 |
$ go run sorting.go
Strings: [a b c]
Ints: [2 4 7]
Sorted: true
|
다음 예제: 함수를 사용한 정렬.