Golang : Sort and reverse sort a slice of bytes
Problem :
How to sort and reverse sort a slice of bytes ?
Solution :
Import "github.com/cznic/sortutil"
Use the ByteSlice type ( see http://godoc.org/github.com/cznic/sortutil#ByteSlice ) and invoke the Sort() method.
package main
import (
"fmt"
"github.com/cznic/sortutil"
"sort"
)
var bytes sortutil.ByteSlice = []byte("zxvfbac")
func main() {
// Bytes
fmt.Println("Original : ", string(bytes[:]))
fmt.Println("Original : ", bytes[:])
sort.Sort(bytes)
fmt.Println("Sort : ", string(bytes[:]))
fmt.Println("Sort : ", bytes[:])
sort.Sort(sort.Reverse(bytes[:]))
fmt.Println("Reverse : ", string(bytes[:]))
fmt.Println("Reverse : ", bytes[:])
}
Output :
Original : zxvfbac
Original : [122 120 118 102 98 97 99]
Sort : abcfvxz
Sort : [97 98 99 102 118 120 122]
Reverse : zxvfcba
Reverse : [122 120 118 102 99 98 97]
See also : Golang : Sort and reverse sort a slice of runes
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5k Nginx and PageSpeed build from source CentOS example
+14.3k Elastic Search : Mapping date format and sort by date
+24.6k Golang : GORM read from database example
+10.3k Golang : Text file editor (accept input from screen and save to file)
+22.1k Golang : Use TLS version 1.2 and enforce server security configuration over client
+16.5k Golang : How to implement two-factor authentication?
+9.7k Golang : Sort and reverse sort a slice of floats
+13.1k Golang : Calculate elapsed years or months since a date
+11.6k Use systeminfo to find out installed Windows Hotfix(s) or updates
+22.2k Golang : Join arrays or slices example
+7.5k Golang : Handling Yes No Quit query input
+17k Golang : Read integer from file into array