Example #1
0
        public void Partitioner()
        {
            SimpleLinkedList <int> list = new SimpleLinkedList <int>(new int[] { 3, 5, 8, 5, 10, 1, 2 });
            Partitioner            p    = new Partitioner();

            p.PartitionAt(list, 5);
        }