发布时间:2015-10-27 16:29:27
bool IsExitLoop(list *head){ list *slow = head, *fast = head; while (fast && fast->next) { slow = slow->next; fast = fast->next->next; &n.........【阅读全文】
发布时间:2015-10-27 12:31:36
struct BTree{ int data; struct BTree *left; struct BTree *right;};void *change(BTree *root){ if (root == NULL) return; BTree *temp = root->left; .........【阅读全文】