Skip to content

Instantly share code, notes, and snippets.

View tbnbooij's full-sized avatar
💭
Hi there!

Thomas Booij tbnbooij

💭
Hi there!
View GitHub Profile
@tbnbooij
tbnbooij / tree.c
Last active April 15, 2018 17:51
Binary Tree deletion
#include "tree.h"
Node* Tree_get_largest(Node* root) {
Node* c = root;
while (c->right)
c = c->right;
return c;
}

Awesome Internship-Companies

A curated list of awesome tech companies that offer programs for CS/EE/CE-students.


Contents