码迷,mamicode.com
首页 > 其他好文 > 详细

单链表反转

时间:2017-04-17 00:23:16      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:make   his   like   null   bsp   this   str   链表   from   

1, 非递归方式

List* ListRevert(List* list)
{
    List* head = NULL;  //new list head
    List* temp = NULL;
    while (list!= NULL){  //each time pick up a node from the old list, and add as the new list head
        temp = list->next;
        list->next = head;
        head = list;
        list = temp;
    }
    return head;
}

2, 递归方式

//make sure call the function like this: head=ListRevert_Recursive(head, NULL);

List* ListRevert_Recursive(List* list, List* pre)
{
    List* temp = list;
    if (list == NULL ){
        return list;
    }
    else if (list->next == NULL){
        list->next = pre;
        return list;
    }
    List* newhead = ListRevert_Recursive(list->next, list);  //recursive until we find the list head, and save to newhead
    list->next = pre;
    return newhead;
}

单链表反转

标签:make   his   like   null   bsp   this   str   链表   from   

原文地址:http://www.cnblogs.com/ruiw/p/6720448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!