Highest voted questions in Programming and DS

1 votes
1 answer
2062
The minimum number of node in an AVL Tree of height $10$ is ____________
1 votes
1 answer
2065
1 votes
1 answer
2066
pls explain this;i never get its explanation on GO!
1 votes
0 answers
2068
how to interpret the statement ptr1=(ptr+=sizeof(int))-2; here...
1 votes
0 answers
2070
What is the time complexity of the best-known algorithm to reverse a doubly linked list?$A) O(n)$$B) O(logn)$$C) O(1)$$D) O(n^{2})$
1 votes
0 answers
2071
1 votes
0 answers
2072
1 votes
2 answers
2073
What is Head recursion and Tail Recursion??
1 votes
0 answers
2074
If the head of a Linked List is pointing to $k$ th element, then how will you get the elements before $k$ th element?
1 votes
0 answers
2075
Number of addition performed by above code? Please explain this?
1 votes
0 answers
2076
1 votes
1 answer
2077
While calculating the cost of growable array-based stack.... the cost of n pushes came out as a series - 2 + 4 + 8 + 16 +......+2^(logn + 1) and it equals to 4n - 1. I di...
1 votes
0 answers
2078
i, j; int;void P(x:int){printf(x+10);i=10;j=20;printf(x);}void main(){i=50;j=60;P(i+j);} o/p =call by name=call by text=call by need=
1 votes
1 answer
2079
how the answer is 23699?For column major order I get answer as 80039.Even if i go by row major order the answer I get is 23599
1 votes
1 answer
2080
i am unable to understand how this extern int data type actually works hereplease help me to understand it??