Skip to content

Instantly share code, notes, and snippets.

View lambdaknight's full-sized avatar

Turing Eret lambdaknight

View GitHub Profile
@lambdaknight
lambdaknight / gist:9061411
Created February 17, 2014 23:29
PriorityDeque
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace us.lambdacalcul.collections
{
public class PriorityDeque<T, P>
{