1 votes
203
1 votes
205
O(n-1)+O(n)=O(n)O(n/2)+O(n)=O(n)but O(1)+O(2)+O(3)+...+O(n)=O(n(n+1)/2)=O(n^2)why?
2 votes
207
What language is generated by the following grammer?S→ a | S+S | SS | S* | (S)
2 votes
208
How addition of $+3$ and $-3$ in sign magnitude form is $-5?$
2 votes
217
I have a confusion regarding the array implementation of binary tree ,i.e what are the index locations of the left child of a node whether it is 2i+1 or 2i and same for r...
2 votes
220
In this question should we eliminate left recursion by putting values of S and A in the respective productions so answer will be c but if according to the given productio...