摘要:
#include <stdio.h>typedef struct node{char data[0];struct node *next;}Node;Node *test_and_find(Node *);Node *test_and_find(Node *head){Node *fast = head;Node *slow = head;while(fast && f... 阅读全文
posted @ 2010-07-05 15:34
arshily
阅读(206)
评论(0)
推荐(0)
浙公网安备 33010602011771号