使用Python插入排序

使用Python进行数据结构操作比较少见,但为了更深入的理解Python的操作原理,提升自己的算法能力。我决定认真过一遍 普林斯顿大学教授Robert Sedgewick主讲的《Algorithms》 更多见:iii.run

【普林斯顿算法下载链接】普林斯顿大学教授Robert Sedgewick主讲的《Algorithms》

使用C++插入排序

#include<iostream>
using namespace std;
int main() {
    int a[] = { 4,3,9,0,1,2,5,6,7,8 };
    for(int i = 1; i < 10; i++) {
        int key = a[i];
        int j = i - 1;
        while (j >= 0&&a[j] > key) {
            a[j + 1] = a[j];  
            j--;
        }
        a[j + 1] = key;
    }
    for (int i = 0; i < 10; i++) {
        cout << a[i];
    }
    cout << endl;
    return 0;
}

这一段比较简单,我也就不多说了。

使用Python进行排序

data = [4,3,9,0,1]
for i in range(1,len(data)):
    key = data[i]
    j = i - 1
    while j >= 0 and data[j] > key:
            data[j+1]=data[j]
            j = j - 1
    data[j+1] = key
print(data)

总结:

  • Python的确比CPP简洁得多;
  • while循环体中条件部分可以使用 and ,不能用&&
  • python没有{},需要对齐,输入Tab或者敲空格。
    原文作者:mmmwhy
    原文地址: https://www.jianshu.com/p/b5fb7f8b48ff
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞