美文网首页
bitmap(golang)

bitmap(golang)

作者: Gundy_ | 来源:发表于2019-08-12 16:57 被阅读0次
package main

import "fmt"

//位图
type BitMap struct {
    bits []byte
    max  int
}

//初始化一个BitMap
//一个byte有8位,可代表8个数字,取余后加1为存放最大数所需的容量
func NewBitMap(max int) *BitMap {
    bits := make([]byte, (max>>3)+1)
    return &BitMap{bits: bits, max: max}
}

//添加一个数字到位图
//计算添加数字在数组中的索引index,一个索引可以存放8个数字
//计算存放到索引下的第几个位置,一共0-7个位置
//原索引下的内容与1左移到指定位置后做或运算
func (b *BitMap) Add(num uint) {
    index := num >> 3
    pos := num & 0x07
    b.bits[index] |= 1 << pos
}

//判断一个数字是否在位图
//找到数字所在的位置,然后做与运算
func (b *BitMap) IsExist(num uint) bool {
    index := num >> 3
    pos := num & 0x07
    return b.bits[index]&(1<<pos) != 0
}

//删除一个数字在位图
//找到数字所在的位置取反,然后与索引下的数字做与运算
func (b *BitMap) Remove(num uint) {
    index := num >> 3
    pos := num & 0x07
    b.bits[index] = b.bits[index] & ^(1 << pos)
}

//位图的最大数字
func (b *BitMap) Max() int {
    return b.max
}

func (b *BitMap) String() string {
    return fmt.Sprint(b.bits)
}

相关文章

  • bitmap(golang)

  • golang 实现bitmap

    type bitmap struct { keys []byte len int } func NewBitM...

  • Bitmap方法总汇

    Bitmap缩放 Bitmap裁剪 Bitmap旋转

  • Android中drawable转换为bitmap

    Bitmap转换为Drawable Drawable转换为bitmap 从资源文件中获取Bitmap Bitmap...

  • Bitmap-详解

    参考资料 目录 Bitmap BitmapFactory Bitmap加载方法 Bitmap | Drawable...

  • Bitmap详解

    Bitmap的分析与使用 Bitmap的创建创建Bitmap的时候,Java不提供new Bitmap()的形式去...

  • Bitmap的分析与使用

    Bitmap的分析与使用 Bitmap的创建创建Bitmap的时候,Java不提供new Bitmap()的形式去...

  • 2019-11-05

    Bitmap Bitmap 细说Bitmap bitmap的六种压缩方式,Android图片压缩 1.先讲讲屏幕密...

  • Android Mat 转 Bitmap

    在安卓中将Mat转为Bitmap代码如下: Bitmap bmpCanny = Bitmap.createBitm...

  • 撩一撩B妹(BitMap)

    撩一撩B妹(BitMap) 为什么要撩BitMap? 做android必然会撩到BitMap,撩过BitMap的都...

网友评论

      本文标题:bitmap(golang)

      本文链接:https://www.haomeiwen.com/subject/zanujctx.html