Skip to content

Instantly share code, notes, and snippets.

View maksimkurb's full-sized avatar

Maxim Kurbatov maksimkurb

View GitHub Profile
@maksimkurb
maksimkurb / NibbleArray.h
Last active August 29, 2015 14:08
Nibble Array
#ifndef NIBBLEARRAY_H
#define NIBBLEARRAY_H
#include <qglobal.h> // Used only for asserts
class NibbleArray
{
public:
explicit NibbleArray(int size, int depthBits) {
this->data = new unsigned char[size >> 1];