이 름 : 바다아이
|
조회수 : 9017
짧은 주소 : https://www.bada-ie.com/su/?671591817534
일반 sort 정렬// Go's `sort` package implements sorting for builtins// and user-defined types. We'll look at sorting for// builtins first.package main
import"fmt"import"sort"funcmain() {
// Sort methods are specific to the builtin type;// here's an example for strings. Note that sorting is// in-place, so it changes the given slice and doesn't// return a new one.
strs := []string{"c", "a", "b"}
sort.Strings(strs)
fmt.Println("Strings:", strs)
// An example of sorting `int`s.
ints := []int{7, 2, 4}
sort.Ints(ints)
fmt.Println("Ints: ", ints)
// We can also use `sort` to check if a slice is// already in sorted order.
s := sort.IntsAreSorted(ints)
fmt.Println("Sorted: ", s)
}
출처 : https://gobyexample.com/sortingmap sort 정렬
Source: (example.go)
package main
import (
"fmt""sort"
)
funcmain() {
colors := map[string]int{
"red":5,
"yellow":2,
"blue":3,
}
fmt.Println(colors)
// get the list of keys and sort them
keys := []string{}
for key := range colors {
keys = append(keys, key)
}
sort.Strings(keys)
for _, val := range keys {
fmt.Println(val, colors[val])
}
}
Output:
$ go run example.gomap[red:5 yellow:2 blue:3]
blue 3
red 5
yellow 2
출처 : http://ispycode.com/GO/Sorting/Sort-map-by-key
|
|
번 호
카테고리
제 목
이름
조회수
Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천 실행시간 : 0.0603 초 to webmaster... gogo sea. gogo sea.