shithub: asif

ref: 6c9eb7f74993179a823f4e1c02793786d51bf773
dir: /heap.h/

View raw version
typedef struct Pairheap Pairheap;

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