僞代碼基本規範

插入排序的僞代碼web for j=2 to A.length key=A[j] //Insert A[j]into the sorted sequence A[1..j-1] i=j-1 while i>0 and A[j]>key A[i+1]=A[i] i=i-1 A[i+1}=key 縮進表示塊結構,好比上面這個僞代碼
相關文章
相關標籤/搜索