what is the difference between Linear Array and Linked List?
how to insert a new node in linked list where free node will be available?
what is Singly Linked list?
What does the dummy header in linked list contain?
Can you declare an array without assigning the size of an array?
Can we use Generics with the array?
Can we declare array size as a negative number?
Is there any difference between int[] a and int a[]?
What is the default value of Array?
Can we add or delete an element after assigning an array?
If you do not initialize an array what will happen?
Now you are given an array of a characters (both ASCII and Kanji) and, an index into the array. The index points to the start of some character. Now you need to write a function to do a backspace (i.e. delete the character before the given index).
an array t[100] which contains numbers between 1..99. Return the duplicated value. Try both O(n) and O(n-square).
Write a Program for Insert in a sorted list
what is a balanced tree.