C++ || Snippet – Custom “Shuffle” Function For Arrays
The following is a custom “Shuffle” function which shuffles the contents of an array. This function rearranges each item within the array
C++ || Snippet – Custom “For Each” Iterator Function For Arrays
A “For Each” algorithm is a function that iterates over all the elements contained in a storage collection, and calls a separate
Java || Simple Tic Tac Toe Game Sample Code GUI
The following is another homework assignment which was presented in an intro to Java class. This program was used to provide more
C++ || Custom Template Hash Map With Iterator Using Separate Chaining
Before we get into the code, what is a Hash Map? Simply put, a Hash Map is an extension of a Hash
Python || Count The Total Number Of Characters, Vowels, & UPPERCASE Letters Contained In A Sentence Using A ‘For Loop’
Here is a simple program, which demonstrates more practice using the input/output mechanisms which are available in Python. This program will prompt
Python || Using If Statements & String Variables
As previously mentioned, you can use “int” and “float” to represent numbers, but what if you want to store letters? Strings help
Python || Simple Math Using Int & Float
This page will display the use of int and float data types. Since python is a flexible programming language, variable data types
Python || Hello World!
This page will consist of creating the typical “hello world!” application. First, open a text editor and save the file as “HelloWorld.py“.
Python || Which Interpreter To Use?
Unlike compiled programming languages such as C, C++ or Java, Python is an interpreted language. Since this is the case, the type
C++ || Snippet – How To Display The Current Working Directory
The following is sample code which demonstrates how to display the current working directory of the program when its properties were initialized.
C++ || Snippet – How To Convert A Decimal Number Into Binary
This page will demonstrate how to convert a decimal number (i.e a whole number) into its binary equivalent. So for example, if
C++ || Simple Spell Checker Using A Hash Table
Click Here For Updated Version Of Program The following is another programming assignment which was presented in a C++ Data Structures
C++ || Custom Template Hash Table With Iterator Using Separate Chaining
Looking for sample code for a Hash Map? Click here! Before we get into the code, what is a Hash Table? Simply