Number of comparisons in insertion sort

核能气质少年 提交于 2019-12-02 12:06:53

the problem is

if value >= list[j]:
     numOfComp += 1
     j = j - 1

If value >= list[j] you can and should simply exit your while loop and stop further comarisons

Also you are repeating the comparisons twice See the following refined code

def insertionSort(list):
    numOfComp = 0
    for i in range(1,len(list)):
        value = list[i]
        j = i - 1
        while j>=0:
            if value<list[j]:
                flag=True
            else :
                flag=False
            numOfComp += 1
            if flag:
                list[j+1] = list[j]
                list[j] = value
                j = j - 1
            else:
                break
    print("Number of data comparisons:",numOfComp)
    print("Sorted list:",list)
Boubakr

Don't forget that loop header executed +1 more then the loop body, which we call the exit-condition, take this example:

S = 0;
for(int i = 0; i < 5; i++) {
    S++;
}

The S++ runs 5 times, however the i < 5 runs 6 times, the last one is to check if i < 5, will find the false and exit the loop.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!