コード例 #1
0
ファイル: Program.cs プロジェクト: BenedictRM/algorithms
        private static void runReorderList()
        {
            ListNode head = buildList(6);

            ReorderList.Solution(null);

            Console.WriteLine("Solution");
            printList(head);
        }