C++ Programming Code Examples
C++ > Data Structures Code Examples
C++ Program to Implement Hash Tables Chaining with Binary Trees
C Programming Nested If...Else Statement -
In programming if...else statement executes two different codes depending upon whether the test expression is true or false. Sometime a choice has to be made from more than two
Binary Search Tree with Insertion Deletion -
C++ 'Binary Search Tree' insertion & deletion, finding an element, finding min element, max element, left child, right child, "recursive" and "nonrecursive" traversals, finding the number
If Else If Statement & Multiple Conditions -
In this control structure we have only one 'if' and one 'else', however we can have multiple 'else if' blocks. This is how it looks: If none of the 'condition is true' then these statements
C Codes Sort Even Odd Elements of Array -
C program to input elements in an array from user and sort all even and odd elements of the given array separately without using any other array. If minimum element of the array
Program to find largest array element in C -
Finding largest value in an Array is a classic C array program. Code gives you an insight of iteration, array & conditional operators. We iteratively check each element of an array if
Create Random Linear Extensions for DAG -
"Linear extension" is another term for finding topological sort of a graph. A C++ program to print topological sorting of a DAG. Pointer to an array containing adjacency listsList. Graph
Simple Calculator using Switch Statement -
This C Program takes an arithmetic operator +, -, *, / and two operands from the user and Performs the Calculation on the 2 operands depending upon the operator entered by the
Goto Statement in The C++ programming -
The "goto statement" is used for transferring the control of a program to a given label. The syntax of goto statement looks like this: In a C++ program, we have any "number of goto"