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

[Interview] Bubble sort using singly-linked list

时间:2015-08-17 15:23:28      阅读:108      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!