Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

1.

Write C++ program to implement the following without using in-built string functions
i) Concatenate two strings
ii) reverse a given string compared to strings.
iii) Extract a string from another string
iv) Check whether the given string is present in the main string and return the position
2. Write C++ program to implement stack data structure using arrays and class
3. Write C++ program to convert decimal number to binary number using stack data
structure.
4. Write C++ program to convert given parenthesized infix expression to postfix expression
5. Write C++ program to evaluate given postfix expression using stack data structure.
6. Write C++ program to implement queue data structure using arrays and class
7. Write C++ program to implement circular queue using arrays and class
8. Write C++ program to implement input restricted double ended queue using arrays and
class
9. Write C++ program to implement ascending priority queue using arrays and class

You might also like