Skip to content

Instantly share code, notes, and snippets.

View hoohack's full-sized avatar
💭
I may be slow to respond.

hoohack hoohack

💭
I may be slow to respond.
View GitHub Profile
@hoohack
hoohack / rbtree.c
Created June 27, 2016 03:46
Red Black Implement
#include "rbtree.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
RBTree *rbtree_init(int (*rbt_keycmp)(void *, void *))
{
RBTree *tree = malloc(sizeof(RBTree));
if (tree == NULL) {
printf("malloc tree failed\n");