Showing posts with label Data Structure. Show all posts
Showing posts with label Data Structure. Show all posts

Sunday, 7 February 2016

Introduction To Single Linked List

Introduction To Single Linked List

Description 

  • In a single-linked list every element contains some data and a link to the next element(link), which allows to keep the structure.
  • In this type of Linked List two successive nodes are linked together in linear fashion.
  • Each element of the list is called a “node”.
  • First node is called “head” and it’s a dedicated node. By knowing it, we can access every other node in the list. 
  • Last node of the list is called “Tail”,By knowing it we can perform add operation.
  • Each Node contain address of the next node to be followed.
  • In Single Linked List only Linear or Forward Sequential  movement(traversal) is possible.
  • Elements are accessed sequentially, no direct access is allowed.

Structure of single linked list

  • Every node of a singly-linked list contains following information
    • A value (primitive data/user define data).
    • A link to the next element (pointer data).
  • Sketchy, it can be shown like this…
slink structure
Example 1:   primitive data type single lined list
                             struct single_link_list
                               {
                                        int data;
                                        struct slink*next;
                                };
Example 2:   User define data type single lined list
                              struct emp
                                {
                                         int id;
                                         char name[36];
                                          int sal;
                                 };
                                 struct single_link_list
                                 {
                                       struct emp data;
                                       struct slink*next;
                                   };

Single linked list Internal representation

  • In Singly-linked list implementation First node called head and no other node points to it.
  • Link to the head is usually stored its data and information of next data structure(Next link). For empty list, head initial value is set to “NULL”.
  • in Single linked list Last node called “Tail” usually stored its data and Next link data value is set to “NULL” because it is terminal node.
  • Below you can see another picture, which shows the whole singly-linked list internal representation..
single linked list structure_image2

 Operations on Single Linked List

  • Adding node
  • Inserting  node
  • node Count
  • Traversal
  • Deletion node
  • Updating node data

Thursday, 12 November 2015

Data Structures Interview Questions-Linked List

              Data Structures Interview Questions-Linked List          



1. In a circular linked list
i) Components are all linked together in some sequential manner.
ii) There is no beginning and no end.
iii) Components are arranged hierarchically.
iv) Forward and backward traversal within the list is permitted.

2. A linear collection of data elements where the linear node is given by means of pointer is called?
i) Linked list             ii) Node list         iii) Primitive list             iv) None

3. Which of the following operations is performed more efficiently by doubly linked list than by singly linked list?
i) Deleting a node whose location in given
ii) Searching of an unsorted list for a given item
iii) Inverting a node after the node with given location
iv) Traversing a list to process each node

4. Consider an implementation of unsorted singly linked list. Suppose it has its representation with a head and tail pointer. Given the representation, which of the following operation can be implemented in O(1) time?
a) Insertion at the front of the linked list
b) Insertion at the end of the linked list
c) Deletion of the front node of the linked list
d) Deletion of the last node of the linked list
i) a and b                ii) a and c                iii) a,b and c                  iv) I,II and IV

5. Consider an implementation of unsorted singly linked list. Suppose it has its representation with a head pointer only. Given the representation, which of the following operation can be implemented in O(1) time?
a) Insertion at the front of the linked list
b) Insertion at the end of the linked list
c) Deletion of the front node of the linked list
c) Deletion of the last node of the linked list
i) a and b                ii) a and c              iii) a,b and c                  iii) a,b and d

6. Consider an implementation of unsorted doubly linked list. Suppose it has its representation with a head pointer and tail pointer. Given the representation, which of the following operation can be implemented in O(1) time?
i) Insertion at the front of the linked list
ii) Insertion at the end of the linked list
iii) Deletion of the front node of the linked list
iv) Deletion of the end node of the linked list
a) I and II               b) I and III               c) I,II and III                d) I,II,III and IV

7. Consider an implementation of unsorted doubly linked list. Suppose it has its representation with a head pointer only. Given the representation, which of the following operation can be implemented in O(1) time?
i) Insertion at the front of the linked list
ii) Insertion at the end of the linked list
iii) Deletion of the front node of the linked list
iv) Deletion of the end node of the linked list
a) I and II                    b) I and III               c) I,II and III                       d) I,II,III and IV

8. Consider an implementation of unsorted circular linked list. Suppose it has its representation with a head pointer only. Given the representation, which of the following operation can be implemented in O(1) time?
i) Insertion at the front of the linked list
ii) Insertion at the end of the linked list
iii) Deletion of the front node of the linked list
iv) Deletion of the end node of the linked list
a) I and II                    b) I and III              c) I, II, III and IV                d) None

9. Consider an implementation of unsorted circular doubly linked list. Suppose it has its representation with a head pointer only. Given the representation, which of the following operation can be implemented in O(1) time?
i) Insertion at the front of the linked list
ii) insertion at the end of the linked list
iii) Deletion of the front node of the linked list
iv) Deletion of the end node of the linked list
a) I and II                    b) I and III              c) I, II and III              d) I,II,III and IV

10. In linked list each node contain minimum of two fields. One field is data field to store the data second field is?
a) Pointer to character              b) Pointer to integer            c) Pointer to node             d) Node

11. What would be the asymptotic time complexity to add a node at the end of singly linked list, if the pointer is initially pointing to the head of the list?
a) O(1)                  b) O(n)                  c) θ (n)                  d) θ (1)

12. What would be the asymptotic time complexity to add an element in the linked list?
a) O(1)                 b) O(n)              c) O(n2)                   d) None

13. What would be the asymptotic time complexity to find an element in the linked list?
a) O(1)                 b) O(n)             c) O(n2)               d) None

14. What would be the asymptotic time complexity to insert an element at the second position in the linked list?
a) O(1)                       b) O(n)            c) O(n2)            d) None

15. The concatenation of two list can performed in O(1) time. Which of the following variation of linked list can be used?
a) Singly linked list            b) Doubly linked list   c) Circular doubly linked list      d) Array implementation of list

16. Consider the following definition in c programming language
struct node
{
     int data;
     struct node * next;
}
typedef struct node NODE;
NODE *ptr;              Which of the following c code is used to create new node?
a) ptr=(NODE*)malloc(sizeof(NODE));
b) ptr=(NODE*)malloc(NODE);
c) ptr=(NODE*)malloc(sizeof(NODE*));
d) ptr=(NODE)malloc(sizeof(NODE));

17. A variant of linked list in which last node of the list points to the first node of the list is?
a) Singly linked list           b) Doubly linked list            c) Circular linked list         d) Multiply linked list

18. In doubly linked lists, traversal can be performed?
a) Only in forward direction           b) Only in reverse direction     c) In both directions      d) None

19. What kind of linked list is best to answer question like “What is the item at position n?”
a) Singly linked list                              b) Doubly linked list        
c) Circular linked list                         d) Array implementation of linked list

20. A variation of linked list is circular linked list, in which the last node in the list points to first node of the list. One problem with this type of list is?
a) It waste memory space since the pointer head already points to the first node and thus the list node does not need to point to the first node.
b) It is not possible to add a node at the end of the list.
c) It is difficult to traverse the list as the pointer of the last node is now not NULL
d) All of above

21. A variant of the linked list in which none of the node contains NULL pointer is?
a) Singly linked list         b) Doubly linked list            c) Circular linked list             d) None

22. In circular linked list, insertion of node requires modification of?
a) One pointer               b) Two pointer       c) Three pointer           d) None

23. Which of the following statements about linked list data structure is/are TRUE?
a) Addition and deletion of an item to/ from the linked list require modification of the existing pointers
b) The linked list pointers do not provide an efficient way to search an item in the linked list
c) Linked list pointers always maintain the list in ascending order
d) The linked list data structure provides an efficient way to find kth element in the list

24. Linked lists are not suitable to for the implementation of?
a) Insertion sort               b) Radix sort             c) Polynomial manipulation            d) Binary search

25. In worst case, the number of comparison need to search a singly linked list of length n for a given element is
a) log n                              b) n/2                       c) log2n-1             d) n

26. consider the function f defined here:
struct item
{
     int data;
    struct item * next;
};
int f (struct item *p)
{
   return((p==NULL) ||((p->next==NULL)||(p->data<=p->next->data) && (p->next)));
}  For a given linked list p, the function f returns 1 if and only if
a) the list is empty or has exactly one element
b) the element in the list are sorted in non-decreasing order of data value
c) the element in the list are sorted in non-increasing order of data value
d) not all element in the list have the same data value

27. The following C function takes a singly linked list as input argument. It modifies the list by moving the last element to the front of the list and returns the modified list. Some part of the code left blank.
typedef struct node
{
     int value;
    struct node* next;
}Node;
Node* move_to_front(Node* head)
{
    Node* p, *q;
    if((head==NULL) || (head->next==NULL))
      return head;
     q=NULL;
    p=head;
   while(p->next != NULL)
   { 
               q=p;
              p=p->next;
    }
    return head;
Choose the correct alternative to replace the blank line
a) q=NULL; p->next=head; head =p ;
b) q->next=NULL; head =p; p->next = head;
c) head=p; p->next=q; q->next=NULL;
d) q->next=NULL; p->next=head; head=p;

28. The following C Function takes a singly- linked list of integers as a parameter and rearranges
the elements of the lists. The function is called with the list containing the integers 1,2,3,4,5,6,7 in the given order. What will be the contents of the list after the function completes execution?
struct node{
              int value;
             struct node* next;
};
void rearrange (struct node* list) 
{
              struct node *p,q; 
              int temp;
             if (! List || ! list->next) return;
            p->list; q=list->next; 
           while(q)
           {
                       temp=p->value; p->value=q->value;
                      q->value=temp;p=q->next;
                     q=p?p->next:0;
             }
}
a) 1, 2, 3, 4, 5, 6, 7               b) 2, 1, 4, 3, 6, 5, 7         c) 1, 3, 2, 5, 4, 7, 6         d) 2, 3, 4, 5, 6, 7, 1

Tuesday, 10 November 2015

Data Structures Interview Questions-Sorting

               Data Structures Interview Questions-Sorting               

1. Which of the following is not a stable sorting algorithm?
a) Insertion sort               b) Selection sort              c) Bubble sort                       d) Merge sort

2. Which of the following is a stable sorting algorithm?
a) Merge sort             b) Typical in-place quick sort           c) Heap sort               d) Selection sort

3. Which of the following is not an in-place sorting algorithm?
a) Selection sort                b) Heap sort         c) Quick sort          d) Merge sort

4. Running merge sort on an array of size n which is already sorted is
a) O(n)                  b) O(nlogn)              c) O(n2)                d) None

5. The time complexity of a quick sort algorithm which makes use of median, found by an O(n) algorithm, as pivot element is
a) O(n2)                 b) O(nlogn)               c) O(nloglogn)                  d) O(n)

6. Which of the following is not a noncomparison sort?
a) Counting sort              b) Bucket sort             c) Radix sort     d) Shell sort

7. The time complexity of heap sort in worst case is
a) O(logn)              b) O(n)               c) O(nlogn)         d) O(n2)

8. If the given input array is sorted or nearly sorted, which of the following algorithm gives the best performance?
a) Insertion sort              b) Selection sort        c) Quick sort             d) Merge sort

9. Which of the following algorithm pays the least attention to the ordering of the elements in the input list?
a) Insertion sort               b) Selection sort           c) Quick sort             d) None

10. Consider the situation in which assignment operation is very costly. Which of the following sorting algorithm should be performed so that the number of assignment operations is minimized in general?
a) Insertion sort                 b) Selection sort             c) Heap sort               d) None

11. Time complexity of bubble sort in best case is
a) θ (n)                       b) θ (nlogn)              c) θ (n2)               d) θ (n(logn) 2)

12. Given a number of elements in the range [0….n3]. which of the following sorting algorithms can sort them in O(n) time?
a) Counting sort                b) Bucket sort         c) Radix sort     d) Quick sort

13. Which of the following algorithms has lowest worst case time complexity?
a) Insertion sort            b) Selection sort            c) Quick sort           d) Heap sort

14. Which of the following sorting algorithms is/are stable
a) Counting sort            b) Bucket sort         c) Radix sort       d) All of the above

15. Counting sort performs …………. Numbers of comparisons between input elements.
a) 0                             b) n                c) nlogn                   d) n2

             Data Structures Interview Questions-Sorting            

16. The running time of radix sort on an array of n integers in the range [0……..n5 -1] when using base 10 representation is
a) θ (n)                  b) θ (nlogn)                 c) θ (n2)             d) none

17. The running time of radix sort on an array of n integers in the range [0……..n5 -1] when using base n representation is
a) θ (n)               b) θ (nlogn)           c) θ (n2)          d) None         View Answer / Hide Answer

18. Which of the following sorting algorithm is in-place
a) Counting sort          b) Radix sort     c) Bucket sort            d) None

19. The radix sort does not work correctly if each individual digit is sorted using
a) Insertion sort            b) Counting sort      c) Selection sort               d) Bubble sort

20. Which of the following sorting algorithm has the running time that is least dependant on the initial ordering of the input?
a) Insertion sort                   b) Quick sort            c) Merge sort         d) Selection sort

21. Time complexity to sort elements of binary search tree is
a) O(n)                       b) O(nlogn)           c) O(n2)                      d) O(n2logn)

22. The lower bound on the number of comparisons performed by comparison-based sorting algorithm is
a) Ω (1)                                 b) Ω (n)                c) Ω (nlogn)                d) Ω (n2)

23. Which of the following algorithm(s) can be used to sort n integers in range [1…..n3] in O(n) time?
a) Heap sort                     b) Quick sort              c) Merge sort                   d) Radix sort

24. Which of the following algorithm design technique is used in the quick sort algorithm?
a) Dynamic programming               b) Backtracking              c) Divide-and-conquer   d) Greedy method

25. Merge sort uses
a) Divide-and-conquer                   b) Backtracking            c) Heuristic approach             d) Greedy approach

26. For merging two sorted lists of size m and n into sorted list of size m+n, we require comparisons of
a) O(m)                      b) O(n)                         c) O(m+n)                         d) O(logm + logn)

27. A sorting technique is called stable if it
a) Takes O(nlogn) times
b) Maintains the relative order of occurrence of non-distinct elements
c) Uses divide-and-conquer paradigm
d) Takes O(n) space

28. In a heap with n elements with the smallest element at the root, the seventh smallest element can be found in time
a) θ (nlogn)                   b) θ (n)                  c) θ (logn)             d) θ (1)

29. What would be the worst case time complexity of the insertion sort algorithm, if the inputs are restricted to permutation of 1…..n with at most n inversion?
a) θ (n2)                   b) θ (nlogn)              c) θ (n1.5)                  d) θ (n)

30. In a binary max heap containing n numbers, the smallest element can be found in time
a) θ (n)                       b) θ (logn)               c) θ (loglogn)             d) θ (1)