Skip to content

Instantly share code, notes, and snippets.

View wdpm's full-sized avatar
🎯

wdpm wdpm

🎯
View GitHub Profile
@wdpm
wdpm / rbtree.c
Last active September 30, 2022 15:58 — forked from GuoJing/rbtree.c
simple rbtree source code
#include <stdio.h>
#include <stdlib.h>
int BLACK = 0;
int RED = 1;
struct node
{
struct node *left;
struct node *right;