首页 > 其他 > 详细

[Interview] Bubble sort using singly-linked list

时间:2015-08-17 15:23:20      阅读:129      评论:0      收藏:0      [点我收藏+]
  • Question : 
    • Bubble sort using singly-linked list
  • Idea : 
    • 在linked list 交換node與node時, 我們會想用換*next的方式。但是這裡是singly-linked list.
      還會需要previously node。其實這裡單純直接換int val還比較順。
  • Code : 
  • typedef struct Node{
        int val;
        struct Node *next;
    }Node, *NodePtr;
    void bubbleSort(NodePtr head) {
        int i,j,tmp;
        bool flag;
        for(i = 0; i < len-1 ;i++) {
            NodePtr curr = head;
            NodePtr next = head->next;
            flag = false;
            for(j=0; j < len-i-1 ;j++) {
                if(curr->val > next->val ) {
                    tmp = curr->val;
                    curr->val = next->val; 
                    next->val = tmp;
                    flag = true;
                }
            }
            if(flag == false) break; // 沒有結點需要swap
        }
    }
    

      

[Interview] Bubble sort using singly-linked list

原文:http://www.cnblogs.com/bittorrent/p/4736662.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!