Ruby實現插入排序演算法及進階的二路插入排序程式碼範例_ruby專題

來源:互聯網
上載者:User

基礎
將一個記錄插入到一個已經排序好的表中,以得到一個記錄增一的有序表。並且最關鍵的一點就是它把比當前元素大的記錄都往後移動,用以空出“自己”該插入的位置。當n-1趟插入完成後該記錄就是有序序列。

def insertSort(tarray)  i=1  while(i < tarray.size) do   if tarray[i] < tarray[i-1]     j=i-1     x=tarray[i]   #puts x.class   #puts tarray[i].class     tarray[i]=tarray[i-1]#先與左側第一個比自己大的交換位置     while(x< tarray[j].to_i) do#尋找到一個比自己小的,並放在其後      tarray[j+1]=tarray[j]      #puts tarray[j].class      j=j-1     end     tarray[j+1]=x   end   i=i+1  end enda=[5,2,6,4,7,9,8]insertSort(a)print a
[2, 4, 5, 6, 7, 8, 9]>Exit code: 0

剛開始寫代碼時,在x< tarray[j]處沒有加to_i方法,出現了如下錯誤:

final.rb:10:in `<': comparison of Fixnum with nil failed (ArgumentError)

一開始我很困惑,便在輸出了x.class,tarray[j].class,然而這兩的輸出都是Fixnum。後來發現,Ruby的Array類和其他的不太一樣,Ruby中允許一個Array對象中儲存不同類型的元素,當a的一個元素賦值給x後,無法確定與x比較的a[i]是否是Fixnum類型,所以報錯,這隻是我自己的理解。

進階
2路插入排序基於折半插入排序:

def two_way_sort data first,final = 0,0 temp = [] temp[0] = data[0] result = [] len = data.length for i in 1..(len-1)  if data[i]>=temp[final]   final +=1   temp[final] = data[i]  elsif data[i]<= temp[first]   first = (first -1 + len)%len   temp[first] = data[i]  else   if data[i]<temp[0]    low = first    high = len -1       while low <=high do     m = (low + high)>>1     if data[i]>temp[m]      low = m + 1     else      high = m -1     end    end        j = first - 1    first -=1    while j < high do     temp[j] = temp[j+1]     j +=1    end     temp[high] = data[i]   else    low =0    high = final    while low <=high do     m =(low + high)>>1     if data[i]>=temp[m]      low = m + 1     else      high = m - 1     end    end    j = final + 1    final +=1    while j > low do     temp[j] = temp[j-1]     j -=1    end     temp[low] = data[i]   end  end   p temp  end i = 0 for j in first..(len - 1)  result[i] = temp[j]  i +=1 end for j in 0..final  result[i] = temp[j]  i +=1 end return resultenddata = [4,1,5,6,7,2,9,3,8].shufflep dataresult = two_way_sort datap result

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.