retagged by
381 views
1 votes
1 votes
is sum of subset problem is there in the gate cse syllabus ?
retagged by

1 Answer

Related questions

2 votes
2 votes
2 answers
2
Manasi Srivastava asked Oct 9, 2017
874 views
Do we need to study the Strassens's algorithm in detail like proof or working of that algorithm or we just need to know the time complexity of the algorithm because I can...
1 votes
1 votes
2 answers
3
A_i_$_h asked Jul 25, 2017
547 views
fib(n){if(n==0)return 0;if(n==1)return 1;return(fib(n-1) + fib(n-2));}for fib(4) the number of function calls by dynamic programmming is 7and without dynamic programming ...
1 votes
1 votes
1 answer
4
A_i_$_h asked Jul 25, 2017
307 views
Number of ways we can perform matrix multiplicationandnumber of ways a matrix can be parenthesized means the same?