1. 程式人生 > >[排序]雞尾酒排序演算法實現

[排序]雞尾酒排序演算法實現

作者 zhonglihao
演算法名 雞尾酒排序 Cocktail Sort
分類 排序
複雜度 % 大概是1/2 * n^2時間複雜度
形式與資料結構 Matlab程式碼
特性 來回順序倒序排序
具體參考出處 民間
備註
clc;clear;close all;

n       = 1000;
data    = rand(1,n);
bar(data);

add_odd = 0;% 奇偶分開排序
sorted_count = 0;% 已有序
sort_circle = 0;

while(1)
    
    if(add_odd == 0)
        sort_circle = sort_circle + 1;
        sorted_count = 1;
        for i = 2:1:n
            if(data(i-1)>data(i))
                temp = data(i-1);
                data(i-1) = data(i);
                data(i) = temp;
            else
                sorted_count = sorted_count + 1;
            end
        end
        
        if(sorted_count==n)
            break;
        end
        add_odd = 1;
    else
        sort_circle = sort_circle + 1;
        sorted_count = 1;
        for i = n:-1:2
            if(data(i-1)>data(i))
                temp = data(i-1);
                data(i-1) = data(i);
                data(i) = temp;
            else
                sorted_count = sorted_count + 1;
            end
        end
        
        if(sorted_count==n)
            break;
        end
        
        add_odd = 0;
    end
end
bar(data);
disp(sort_circle);