コード例 #1
0
ファイル: PriorityQueue.cs プロジェクト: mo5h/omeo
        public void Push(int priority, object obj)
        {
            QueueEntry entry = AllocEntry();

            entry.SetEntry(priority, obj, _tree._null);
            _tree.RB_InsertNode(entry);
        }