今年10月我開始了我的生物信息學碩士學位,因爲前生物學家從一段代碼中發現遞歸方程非常困難。如果有人能向我解釋這一點,我將非常感激。 如何從這段代碼中找到遞歸方程? procedure DC(n)
if n<1 then return
for i <- 1 to 8 do DC(n/2)
for i <- 1 to n³ do dummy <- 0
我的猜測是T(N
我有困難,瞭解如何開發遞推關係。我給出的代碼是 int result = bizarre(n, n);
public static int bizarre (int first, int second)
{
if (second <= 1)
{
int temp = 0;
for (int i = 0; i < first; i++)
tem