-
-
-
How to find the loop in singly linked list
If we are having the singly linked list then last node of the list is linked with middle (or) any node in the list then it causes the loop then how to find the loop with less time complexity
-
Arrays Vs Linked List
Among arrays and linked list, which one is easiest to imlement and why?
-
Deletions at Both the Ends
Identify the data structure which allows deletions at both ends of the list but insertion at only one end.a. Input-restricted dequeb. Output-restricted dequec. Priority queuesd. None of above
-
Programming in C
Define data type NodeCD, declare 100 variables of CD1 & access data?
Time Complexity of Adding Three Matrices
What is the time complexity of adding three matrices of size NXN cell-by-cell?
Macro Usage
Why macro cannot be used in place of inline function?
Bit Transformation
The process of transforming 1 bit pattern into another is called ______________
Where data abstraction used ?
can you please explain the oops concepts with example program? like in which place data abstraction is used?
Data Structure
Data structures provide many positive aspects like minimum disk-space efficiency, proper data management but at cost of complexity. What is your opinion?
Double Link List
Is double link list a linear data structure? If Yes, Why?If No, Why?
Forest Data Structure
What is forest data structure? How is it useful?
What is the formula used to calculate the back of the queue?
Skill/Topic: QueueA) The back of the queue is calculated by using the following formula:back = (back+1) % size
Ans