Data Structure Interview C Program: Questions To Create A Copy of A Linked List
Data Structure Interview C Program: Questions To Create A Copy of A Linked List
1. How to compare two linked lists? Write a C program to create a copy of a linked list.
Ans : int compare_linked_lists(struct node *q, struct node *r) {
static int flag;
if((q==NULL ) && (r==NULL))
{
flag=1;
}
else
{
if(q==NULL || r==NULL)
{
flag=0;
}
if(q->data!=r->data)
{
flag=0;
}
else
{
compare_linked_lists(q->link,r->link);
}
}
return(flag); }
2. How to create a copy of a linked list? Write a C program to compare two linked lists.
Ans : copy_linked_lists(struct node *q, struct node **s) {
if(q!=NULL)
{
*s=malloc(sizeof(struct node));
(*s)->data=q->data;
(*s)->link=NULL;
copy_linked_list(q->link, &((*s)->link));
}}
3. If you are using C language to implement the heterogeneous linked list, what pointer
type will you use?
Ans : The heterogeneous linked list contains different data types in its nodes and we need a link,
pointer, to connect them. It is not possible to use ordinary pointers for this. So we go for void
pointer. Void pointer is capable of storing pointer to any type as it is a generic pointer type.
7. What are references in C++? Why do you need them when you have pointers?
Ans : A reference variable is actually just a pointer that reduces syntactical clumsiness related with
pointers in C (reference variables are internally implemented as a pointer; it’s just that
programmers can’t use it the way they use pointers). As a side note, a reference must refer to
some object at all times, but a pointer can point to NULL. In this way, references can be more
efficient when you know that you’ll always have an object to point to, because you don’t have to
check against NULL:
void func(MyClass &obj)
{
obj.Foo();
}
Is better than:
void func(MyClass *obj)
{
if (obj) obj->Foo();
}
10. What are the advantages and disadvantages of B-star trees over Binary trees ?
Ans: A1 B-star trees have better data structure and are faster in search than Binary trees, but it’s
harder to write codes for B-start trees.
List out the areas in which data structures are applied extensively?
Compiler Design, Operating System, Database Management System, Statistical
analysis package, Numerical Analysis, Graphics, Artificial Intelligence, Simulation
If you are using C language to implement the heterogeneous linked list, what
pointer type will you use?
The heterogeneous linked list contains different data types in its nodes and we need a
link, pointer to connect them. It is not possible to use ordinary pointers for this. So we
go for void pointer. Void pointer is capable of storing pointer to any type as it is a
generic pointer type.
In RDBMS, what is the efficient data structure used in the internal storage
representation?
B+ tree. Because in B+ tree, all the data is stored only in leaf nodes, that makes
searching easier. This corresponds to the records that shall be stored in leaf nodes.
Getting memory from the heap is much slower than getting it from the stack. On the
other hand, the heap is much more flexible than the stack. Memory can be allocated at
any time and deallocated in any order. Such memory isn't deallocated automatically;
you have to call free().
Recursive data structures are almost always implemented with memory from the heap.
Strings often come from there too, especially strings that could be very long at runtime.
If you can keep data in a local variable (and allocate it from the stack), your code will
run faster than if you put the data on the heap. Sometimes you can use a better
algorithm if you use the heap faster, or more robust, or more flexible. Its a tradeoff.
If memory is allocated from the heap, its available until the program ends. That's great
if you remember to deallocate it when you're done. If you forget, it's a problem. A
�memory leak is some allocated memory that's no longer needed but isn't deallocated.
If you have a memory leak inside a loop, you can use up all the memory on the heap
and not be able to get any more. (When that happens, the allocation functions return a
null pointer.) In some environments, if a program doesn't deallocate everything it
allocated, memory stays unavailable even after the program ends.
What is the bucket size, when the overlapping and collision occur at same time?
One. If there is only one entry possible in the bucket, when the collision occurs, there
is no way to accommodate the colliding value. This results in the overlapping of values.
If you are using C language to implement the heterogeneous linked list, what
pointer type will you use?
The heterogeneous linked list contains different data types in its nodes and we need a
link, pointer to connect them. It is not possible to use ordinary pointers for this. So we
go for void pointer. Void pointer is capable of storing pointer to any type as it is a
generic pointer type.
while (pointer1)
{
pointer1 = pointer1->next;
pointer2 = pointer2->next; if (pointer2) pointer2=pointer2->next;
if (pointer1 == pointer2)
??????{
print (\”circular\n\”);
}
}
In array the items can be entered or removed in any order. Basically each member
access is done using index. No strict order is to be followed here to remove a particular
element.
What is precision?
Precision refers the accuracy of the decimal portion of a value. Precision is the number
of digits allowed after the decimal point.
For example, in C# the declaration int i; will reserve 32 bits for variable i.
A pointer declaration reserves memory for the address or the pointer variable, but not
for the data that it will point to. The memory for the data pointed by a pointer has to be
allocated at runtime.
The memory reserved by the compiler for simple variables and for storing pointer
address is allocated on the stack, while the memory allocated for pointer referenced
data at runtime is allocated on the heap.
How many parts are there in a declaration statement?
There are two main parts, variable identifier and data type and the third type is
optional which is type qualifier like signed/unsigned.
Is Pointer a variable?
Yes, a pointer is a variable and can be used as an element of a structure and as an
attribute of a class in some programming languages such as C++, but not Java.
However, the contents of a pointer is a memory address of another location of memory,
which is usually the memory address of another variable, element of a structure, or
attribute of a class.
What is a queue ?
A Queue is a sequential organization of data. A queue is a first in first out type of data
structure. An element is inserted at the last position and an element is always taken
out from the first position.
When an element is removed front will be incremented by 1. In case it reaches past the
last index available it will be reset to 0. Then it will be checked with end. If it is greater
than end queue is empty.
When an element is added end will be incremented by 1. In case it reaches past the last
index available it will be reset to 0. After incrementing it will be checked with front. If
they are equal queue is full.
What are the major data structures used in the following areas : RDBMS,
Network data model & Hierarchical data model.
1. RDBMS Array (i.e. Array of structures)
2. Network data model Graph
3. Hierarchical data model Trees.