shithub: asif

ref: 2850b592998277aef88f3e6769063b741d850d58
dir: /heap.h/

View raw version
typedef struct Pairheap Pairheap;

struct Pairheap{
	double n;
	void *aux;
	Pairheap *parent;
	Pairheap *left;
	Pairheap *right;
};