C++ Programming Code Examples
C++ > Data Structures Code Examples
Program for Multiplication of two matrices using OOP concept
Identify Whether the String is Palindrome -
Take a string as input and store it in the array s[]. Load each character of the array s[] into the array stack[]. Use variables front and top to represent the last and top element of the
C++ Finds Convex Hull of A Set of Points -
Program to implement "Jarvis March" to find convex hull. The idea of Jarvis's Algorithm is simple, we start from the 'leftmost point' (or point with minimum x coordinate value) and
C Rightmost Occurence of Input Character -
Program to find out the rightmost occurence of an input character. Enter the character to be searched. Required character is found at position. Required character is not found in...
C++ Codes Perform Dictionary Operations -
This is a C++ Program to perform "dictionary" operations in binary search tree. In computer science, a binary search tree, sometimes also called an ordered or "sorted binary tree", is a
C Programming calculator use Switch Case -
Step by step descriptive logic to create menu driven calculator that performs all basic math operations. Input 2 numbers and a Character from user in the given format. Store them in
Using Manipulators to Format I/O In C++ -
'boolalpha' turns on boolapha flag. 'dec' turns on dec flag. 'endl' output a newline character & flush the 'stream'. ends output a null. fixed Turns on fixed flag. flush Flush a stream. hex
Pass Structure as an argument to Function -
We have a function 'printStudentInfo()' which takes structure Student as an 'argument' and 'prints the details' of student using structure varaible. The important point to note here is
C++ Strings Matching using String Library -
C++ program performs string matching using "String library" of C++. A text and a pattern is given as input. The Pattern is 'searched' for in text and all instances of the pattern are given