Skip to content

Instantly share code, notes, and snippets.

View kaizhu256's full-sized avatar

kai zhu kaizhu256

View GitHub Profile
@kaizhu256
kaizhu256 / statistics-distributions.js
Last active March 19, 2023 00:49 — forked from benrasmusen/statistics-distributions.js
JavaScript library for calculating critical values and upper probabilities of common statistical distributions
/*
* NAME
*
* statistics-distributions.js - JavaScript library for calculating
* critical values and upper probabilities of common statistical
* distributions
*
* SYNOPSIS
*
*
@kaizhu256
kaizhu256 / AVLTree.c
Created October 16, 2016 04:35 — forked from nehaljwani/AVLTree.c
AVLTree
#include <stdio.h>
#include <stdlib.h>
typedef struct _node node;
struct _node {
node *head;
node *left;
node *right;
int value;
int height;