我想返回排序數組中重複值的數量。 例如:A = {1,1,2,3,4,4},FRATELLI(N)應返回2.(它們是1,1和4,4) 我試圖使用一個遞歸的方法,但它不起作用。它總是給我4. 我在問,如果有人請能幫助我更好地理解這種編程方法。非常感謝! 功能: #include <iostream>
using namespace std;
int fratelli(int a
我使用貪婪算法和反向跟蹤算法實現了反向跟蹤算法。 後面跟蹤算法如下: MIS(G= (V,E): a graph): largest set of independent vertices
1:if|V|= 0
then return .
3:end if
if | V|= 1
then return V
end if
pick u ∈ V
Gout←G−{u}{remove u