C++ Programming Code Examples
C++ > Strings Code Examples
Implement the One Time Pad Algorithm
Program to Implement the RSA Algorithm -
Encodes any message using 'RSA Algorithm'. Input is 'Case Sensitive' and works only for all characters. RSA is one of the first practicable 'public-key' cryptosystems and is widely used
C++ Program Implements Fibonacci Heap -
Link nodes in fibonnaci heap. Union nodes in fibonnaci heap. Extract min node in fibonnaci heap. Consolidate node in fibonnaci heap and Decrease key of nodes in fibonnaci heap. Find
Program Use Recursion to Search Element -
C Program code Uses Recursive function and searches for an element in an unsorted list & display it's position of occurrence. enters the element needed to be searched. Printing the
Converting Lowercase String to Uppercase -
C program 'Converting string' from lowercase to uppercase string using loop. Internally in C language every characters are represented as an integer value known as ASCII value. Where
C Code to find largest element of an Array -
Function to find the largest element in the array. In the following program we are initializing a variable (maxelement) with the first element of given array and then we are
Code Checks a String is Palindrome or Not -
C Program to check Whether a given string is palindrome or not 'using recursion'. Program, with recursion, determines the entered string is a 'palindrome' or not. Palindrome is a word,
C++ Implementing B-Tree Data Structure -
This C++ Program implements The "B-Tree" data structure. B-tree is a tree data structure that keeps "data sorted" and allows searches, sequential access & insertions in logarithmic
C Code Reads two Strings & Concatenates -
C program Read two strings and Concatenate them, without using library functions. Display the 'Concatenated String'. Take two strings as input and store them in the arrays string1 and