Skip to content

Instantly share code, notes, and snippets.

View nureynisow's full-sized avatar
🏠
Working from home

nureynisow nureynisow

🏠
Working from home
View GitHub Profile
@Aszarsha
Aszarsha / splay.c
Last active April 16, 2020 16:05
Splay tree (corr for Algo3 students)
#include "splay.h"
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <limits.h>
//===== Splay Node =====//
typedef struct splay_node_t {
struct splay_node_t * left;