第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

計(jì)數(shù)反轉(zhuǎn)算法中的錯(cuò)誤

計(jì)數(shù)反轉(zhuǎn)算法中的錯(cuò)誤

HUWWW 2023-03-16 16:08:41
我正在嘗試編寫一種算法來(lái)計(jì)算數(shù)組中的反轉(zhuǎn)次數(shù)。反轉(zhuǎn)是 A[i] > A[j] 和 i < j。def sort_and_count(L):    if len(L)<2:        return 0, L    else:        A = L[:len(L)//2]        B = L[len(L)//2:]        rA, A = sort_and_count(A)        rB, B = sort_and_count(B)        r, L = merge_and_count(A,B)    return r+rB+rA, Ldef merge_and_count(A,B):    i = j = 0    count = 0    L = []    while len(A) > i and len(B) > j:        if A[i] <= B[j]:            L.append(A[i])            i+=1        else:            L.append(B[j])            count = count + (len(A)-1)            j+=1    #copy the remaining elements    for index in range(i,len(A)):        L.append(A[index])    for index in range(j,len(B)):        L.append(B[index])    return count, Lsort_and_count(A)[0]算法不正確。對(duì)于這個(gè)輸入 A = [7, 3, 20, 16, 5, 8] 它返回 6。正確答案是 7 (7, 3),(7, 5),(20, 16),(20, 5) ,(20, 8),(16, 5),(16, 8)。對(duì)于某些輸入,答案是正確的。我不確定是什么原因造成的。
查看完整描述

1 回答

?
森林海

TA貢獻(xiàn)2011條經(jīng)驗(yàn) 獲得超2個(gè)贊

我希望我知道它給出正確結(jié)果的輸入是什么。你有一個(gè)錯(cuò)字:len(A) - 1應(yīng)該是len(A) - i。



查看完整回答
反對(duì) 回復(fù) 2023-03-16
  • 1 回答
  • 0 關(guān)注
  • 111 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)