Skip to content

Instantly share code, notes, and snippets.

View lorishui's full-sized avatar

loriwave lorishui

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");