摘要:
1 typedef struct Node { 2 int data; 3 Node* next; 4 }Node; 5 6 Node* find_mid_node(Node* head) { 7 //检查传入参数,防止空节点 8 if (head) 9 return head; 10 11 //一步指针... 阅读全文
摘要:
1 typedef struct Node { 2 int data; 3 Node* next; 4 }Node; 5 6 Node* find_mid_node(Node* head) { 7 //检查传入参数,防止空节点 8 if (head) 9 return head; 10 11 //一步指针... 阅读全文
|