摘要:
1. 参考文章http://www.leetcode.com/2011/08/insert-into-a-cyclic-sorted-list.html2. 测试代码View Code 1 #include <iostream> 2 #include <cassert> 3 4 using namespace std; 5 6 struct Node 7 { 8 int data; 9 Node* next;10 Node(int x)11 {12 this->data=x;13 this->next=NULL;14 ... 阅读全文