Recent questions tagged algorithms

3.3k
views
1 answers
1 votes
I can't figure out how to proceed and which case it's falling under after calculating h(n)
1.2k
views
3 answers
0 votes
int main(){extern int a = 20;printf("%d",a); }//why this gives error but followig code is not extern int a =20;int main(){printf("%d",a); } / ... happens that first code gives error but second is not ?//please tell i am realy confused now
564
views
1 answers
0 votes
I wanted to read ALgorithms by cormen but is it to complex to read for beginners ? or i read from other book ?please tell about the cormen is it easy to read for gate and PSU interviews ?
506
views
0 answers
0 votes
how to Implement arrays using linked lists (and vice versa)?Like if we implement a linked list using an array .then we can maintain two arrays.In one array ... ?Also how to implement an array using a linked list..is this even possible?
366
views
1 answers
0 votes
2. Imagine you are playing a computer game that consists of different types of coins.You have the power to cast two magic spells s1 and s2. Each spell ... ale to come to proper answer I have also provide the official solution below.