Skip to content

sumory/baseN4go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

baseN4go

Build Status license

介绍

使用

go get github.com/sumory/baseN4go

默认数组:

[]string{
	"0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
	"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o",
	"p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
	"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O",
	"P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"}

取默认数组前N项作为基数

var N int64 = 16
err, baseN := baseN4go.NewBaseN(N) //16进制
_, encodeResult := baseN.Encode(123456)
_, decodeResult := baseN.Decode(encodeResult)

自定义基数

err, baseN := baseN4go.NewBaseN([]string{"a", "b", "c", "d"}) //四进制
_, encodeResult := baseN.Encode(123456)
_, decodeResult := baseN.Decode(encodeResult)

TODO

性能较低,待优化EncodeDecode方法

Releases

No releases published

Packages

No packages published

Languages