Skip to content

Instantly share code, notes, and snippets.

@tarcisio-marinho
Created December 20, 2017 20:10
Show Gist options
  • Save tarcisio-marinho/3685d09c6254d7abdbfc4594aca5e28a to your computer and use it in GitHub Desktop.
Save tarcisio-marinho/3685d09c6254d7abdbfc4594aca5e28a to your computer and use it in GitHub Desktop.
typedef struct node{
int color;
struct node *left, *right;
}Node;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment