Linked list including nodes


Q1. Write down a program which makes a linked list comprising of nodes of the given struct type and searches the record of a student whose roll number is given by user.

struct student{
char name[15];
int roll;
struct student *next;
};

Q2. What do you mean by merge sort? Write down an algorithm for the merge sort and derive its run time complexity.

Q3. Assume that the given list of numbers is inserted in order to the empty binary search tree:

45, 32, 90, 34, 68, 72, 15, 24, 30, 66, 11, 50, 10

a) Create the binary search tree.

b) Determine in-order, pre-order and post-order traversal of BST made.

Q4. Consider a polynomial p(x, y, z) as:

p(x, y, z) = 8x2y2z – 6yz8 + 3x3yz + 2xy7z – 5x2y3 – 4xy7z3

a) Rewrite the polynomial in such a way that the terms are ordered.

b) Assume that the terms are stored in order shown in the problem statement in the linear arrays COEF, XEXP, YEXP and ZEXP, with the HEAD node first. Assign values to the LINK so that the linked list comprises of the ordered sequence of terms.

Request for Solution File

Ask an Expert for Answer!!
Data Structure & Algorithms: Linked list including nodes
Reference No:- TGS010382

Expected delivery within 24 Hours