Skip to content

Instantly share code, notes, and snippets.

View Mattosx's full-sized avatar

mattos Mattosx

  • Netease
  • Hangzhou
View GitHub Profile
@Mattosx
Mattosx / rbtree.c
Created July 1, 2016 14:16 — forked from hoohack/rbtree.c
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");