Category Archives: Advanced

C++ || How To Join & Concatenate An Array/Vector/Container Into A Delimited String Using C++

The following is a module with functions which demonstrates how to join and concatenate an array/vector/container into a delimited string using C++.

C++ || How To Sort An Array/Vector/Container With Multiple Sorting Conditions Using C++

The following is a module with functions which demonstrates how to sort an array/vector/container with multiple sorting conditions using C++. The function

C++ || How To Round A Number To The Nearest X Using C++

The following is a module with functions which demonstrates how to round a number to the nearest X using C++. This function

C++ || How To Split & Batch An Array/Vector/Container Into Smaller Sub-Lists Of N Size Using C++

The following is a module with functions which demonstrates how to split/batch an array/vector/container into smaller sublists of n size using C++.

C++ || How To Shuffle & Randomize An Array/Vector/Container Using C++

The following is a module with functions which demonstrates how to randomize and shuffle the contents of an array/vector/container using C++. The

C++ || Simple Multi Digit, Decimal & Negative Number Infix To Postfix Conversion & Evaluation

The following is sample code which demonstrates the implementation of a multi digit, decimal, and negative number infix to postfix converter and

C++ || How To Split & Parse A String Into Tokens With Multiple Delimiters Using C++

The following is a module with functions which demonstrates how to split and parse a string into substring tokens with multiple delimiters

C++ || How To Get Distinct & Unique Values In An Array/Vector/Container & Remove Duplicates Using C++

The following is a module with functions which demonstrates how to get distinct and unique values in an array/vector/container and remove duplicates

C++ || How To Create A Simple Predictive Spell Checker Using C++

The following is a module with functions which demonstrates how to create a simple predictive spell checker using C++. The module demonstrated

C++ || How To Execute & Get Regex Match Results Using C++

The following is a module with functions which demonstrates how to execute and get regex match results using C++. The function demonstrated

C++ || How To Trim & Remove The Leading & Trailing Whitespace From A String Using C++

The following is a module with functions which demonstrates how to trim and remove the leading and trailing whitespace from a string

C++ || How To Get A List Of Files At A Given Path Directory Using C++

The following is a module with functions which demonstrates how to get a list of files at a given directory path using

C++ || How To Make Map & Unordered Map Keys Case Insensitive Using C++

The following is a module with functions which demonstrates how to make map and unordered_map keys case insensitive using C++. 1. Case

C++ || How To Search For & Find A Specific Element In A Vector Using C++

The following is a module with functions which demonstrates how to search for and find a specific element in a vector using