Given an array of integers, devise a program to replace every element with the next greatest element on the right side in the array. Also, replace the last element with 5 as there no element on the right side of it.
How to initialize Dictionary using collection initialize?
Write a program to reverse a link list.
What are skew trees? For a tree with 4 nodes draw all possible binary? Generalize for n nodes how many binary trees can be drawn?
How to increase stack limit in w3wp.exe?
What is variable size arrays?and why we use it?
How do you rotate an AVL tree?
Write any two principles of gradation of structures.
write a code for Implementation of stack and queues.
Complete structure of hashmap, very detail description, along with the basic coding of the hashmap internal implementation.
Traverse the given tree using Inorder, Preorder and Postorder traversals. Inorder : D H B E A F C I G J Preorder: A B D H E C F G I J Postorder: H D E B F I J G C A
Draw the B-tree of order 3 created by inserting the following data arriving in sequence – 92 24 6 7 11 8 22 4 5 16 19 20 78
Which is the simplest file structure? (a) Sequential (b) Indexed (c) Random (a) Sequential
Draw a binary Tree for the expression : A * B - (C + D) * (P / Q)
For the following COBOL code, draw the Binary tree? 01 STUDENT_REC. 02 NAME. 03 FIRST_NAME PIC X(10). 03 LAST_NAME PIC X(10). 02 YEAR_OF_STUDY. 03 FIRST_SEM PIC XX. 03 SECOND_SEM PIC XX.