2018年3月7日

单链表指针反向(即链表地址逆转)

摘要: //head为原始链表的头节点地址listNode *buf = head;listNode *pre = buf;while(head->next != NULL){ buf = head->next; head->next = buf->next; buf->next = pre; pre = 阅读全文

posted @ 2018-03-07 16:31 HelloShijam 阅读(237) 评论(0) 推荐(0) 编辑

导航