
How to prove G(n)=n+1 in this algorithm? 1. if (n 0) 2. return 1 3. else if (n1) f 4. return 2 5. else if (n 2) 6. return 3 7. else if (n3) t 8. return 4 else f 9. int OGnew int[n 11 10. G[O]1 1...
1 4 7 10 2 5 8 11 3 6 9 12 I want to print this matrix in c language. How did this formula come out? (3 * j + i + 1); #include <stdio.h> int main() { int y[3][4]; int i, j; for (i = 0; i < 3; i++) { for (j = 0; j < 4; j++) printf("%d ", 3 * j + i + 1); printf("\n"); } return 0; }
For questions 10-12, refer to the following iterative code computes values for the table t. 1 public int [] tIterative (int [C A)1 2 3 4 int n - A.length; int [] t = new int [n]; int j; for (inti-0; i 0) while (j > 0 && A[j] [1] A[i] [O]) 12 13 14 15 16 t[i]Math.max( t[i-1] , A[i][i] - A[i] [o] + t[j] ); return t; 10. Does the code for tIterative use dynamic programming? 11. What...
f(t) -S -8 -7 -3 --1 3 5 1 2 13 4 7 8 9 12 t(ms 15 16 4. For the above periodic signal f(t), specify the symmetry (if any) and determine all coefficients as well as the value for w, so as to find the Fourier series representation of f(t) in the following forms. (24 pts) GO A. f(t) = a + ancos(not) + b sin(nw.t): B. f(t) = R-Cneinwor. n=1 Type A
b) Consider the following code. public static int f(int n) if (n == 1) return 0; else if (n % 2 == 0). return g(n/2); else return g(n+1); public static int g(int n) int r = n % 3; if (r == 0) return f(n/3); else if (r == 1) return f(n+2); else return f(2 * n); // (HERE) public static void main(String[] args) { int x = 3; System.out.println(f(x)); (1) (5 points) Draw the call stack as it would...
1. public int function(int x, int n) { if (n == 0) return 1; return x * function(x, n -1); } function(3,3) - What is the expected output? 3 12 9 27 2. int fun(int x) { if(x == 0) return 1; else return fun(x - 1); } fun(4) 18 1 24 4 3. Which one of the following calls results 6? int mystery(int n){ if (n == 1) return 1; else return n * mystery(n - 1); } mystery(3)...
10 1 2 3 4 5 6 7 8 9 HHHHHHHHH $10 $10 $10 $10 $0 $10 $10 $10 $10 $10 11 12 13 14 15 16 17 18 19 20 $10 $10 $10 $10 $10 $10 $10 $10 $10 $70 What comes closest to the present value of the cash flow stream if the interest rate is 6%? a. $175 O b. $126 O c. $115 O d. $145 o e. $138
Question 18 CLO3 Analyze the following code and answer the questions that follow def F(n): If n <= 1: return n else: return F(n-1)+F(n-2) for i in range (n) print (F(i)) Result: 0 1 1 2 3 5 8 13 a. Write number of operations as a function when the code is execute b If n 7, what is the total number of operations? c. What is the complexity of the algorithm behind the code? (2 Marks) (2 Marks) (1...
Compute the sign of the following permutations: (a) (1, 4, 3, 6, 7)(5, 8, 9, 10). (b) σ ∈ Sn, i 7→ n + 1 − i. (c) Show that this initial configuration of the 15 puzzle is not solvable 3 1 15 13 2 8 5 9 12 7 11 4 14 6 10 − (d) Suppose that (i, j) ∈ Sn is a transposition and that i < j. Find an expression (in terms of i and j...
1 #include <stdio.h> 2 3 11 Remember this written by the 4 // "new guy down the hall". 5 6 pint main(int argc, char *argv[]) { 7 int a = 200; 8 int b = 300; 9 int c = 500; 10 if (a > 400) 11 b += 10; 12 else 13 if (c > 300) b += 50; 14 else b += 20; C += 10; 15 C += 100; 16 if (b > 800) 17 C +=...
Given the following sets: S = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, Even numbers A = {2, 4, 6, 8, 10}; Odd number B = {3, 5, 7, 9}; Natural numbers N = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} and Prime numbers C = {2, 3, 5, 7} Find the following: a) A ∪ C b) A ∩ N c) A ’ d) B ∩ N e) B ∪ N f) C...