- You are given two arrays sorted in ascending order. Write a C Program to merge the
elements of the two arrays and to form a single array sorted in ascending order.
- Given a string s, write a C program to find the length of the longest substring without
repeating characters. Also, display the substring.
-
Write a program to find the smallest number in a list of integers using pointers.
-
Implement the following string library functions using pointers:
4.1. string length (int StringLengh (char *s))
4.2. string copy (void StringCopy(char *s1, char *s2) )
4.3. string comparison (int StringCompare (char *s1, char *s2))
4.4. string concatenation (void StringConcat(char *s1, char *s2) )
-
Implement bubble sort without using array (Use pointers instead)
-
Implement Linear Search.
-
Implement Binary Search.
-
Implement Stack using array.
-
Write a program in C to check whether a string is palindrome or not, using stack.
- Using stack, convert an infix expression to a postfix expression and evaluate the
postfix expression.
-
Write a program to convert an infix expression to a prefix expression using stack.
-
Implement a Queue using arrays with the operations:
a. Insert elements into the queue
b. Delete elements from the queue
c. Display the contents of the queue after each operation
- Implement a Circular Queue using arrays with the operations:
a. Insert elements into the queue
b. Delete elements from the queue
c. Display the contents of the queue after each operation
- Implement a Priority Queue using arrays with the operations:
a. Insert elements into the queue
b. Delete elements from the queue
c. Display the contents of the queue after each operation
- Implement a Double Ended Queue using arrays with the operations:
a. Insert elements into the queue (both front and rear)
b. Delete elements from the queue (both front and rear)
c. Display the contents of the queue after each operation
- Write a program to read two polynomials and store them in an array. Calculate the sum
of the two polynomials and display the first polynomial, second polynomial and the
resultant polynomial.
- Write a program to enter two matrices in normal form. Write a function to convert two
matrices to tuple form and display it. Also, find the transpose of the two matrices
represented in tuple form and display it. Find the sum of the two matrices in tuple form and
display the sum in tuple form.
1.Write a menu driven program for performing the following operations on a linked list
-
Display
-
Insert at beginning
-
Insert at end
-
Delete from beginning
-
Delete from end
-
Create a doubly linked list from a string taking each character from the string. Check if the
string is palindrome in a efficient method.
-
Implement a stack using linked list with the operations:
-
Push
-
Pop
-
Display the contents of the stack
-
Implement a queue using linked lists with the following operations
-
Enqueue
-
Dequeue
-
Display the contents of the queue
-
Write a program to reverese the contents of a queue using stack
-
Write a program to read two polynomials and store them using linked list. Calculate the
sum of the two polynomials and display the first polynomial, second polynomial and the
resultant polynomial.
- Write a program to read two polynomials and store them using linked list. Calculate the
product of the two polynomials and display the first polynomial, second polynomial and the
resultant polynomial.
- Write a program for addition of polynomials containing two variables using linked list. The
terms of the polynomials are ordered by the power of the first variable and then the
second variable, in the descending order. Eg: 4.x^3.y^1 + 2.x^2.y^3 +
5.x^1.y^2+7.y^2+7.y^1+5
- The details of students (number, name and total mark) are to be stored in a linked list.
Write functions for the following operations.
-
Insert (at the beginning)
-
Delete (based on number)
-
Search (based on name or number)
-
Sort on the basis of number
-
Display
1.Create a binary tree with the following operations.
-
Insert a new node
-
Inorder traversal
-
Preorder traversal
-
Postorder traversal
2.Write a program to create a binary search tree (data items are integers) with the following
operations.
-
Insert a new node
-
Inorder traversal
-
Preorder traversal
-
Postorder traversal
-
Delete a node
-
Find the number of leaf nodes
-
Sort the input numbers