-
Recent Posts
Recent Comments
Archives
Categories
Meta
Monthly Archives: June 2012
Learning Math through Set Theory
In grade school, we’re taught that math is about numbers. When we get to college (the ones of us who are still interested in math), we’re taught that mathematics is about sets, operations on sets and properties of those sets. … Continue reading
Posted in Blog, Examples
Tagged Cartesian product, compliment, difference, intersection, learning, math, operations, product, set, set theory, symmetric difference, theory, union
1 Comment
Linear Search Algorithm
I have published code that shows examples of the Linear Search Algorithm. The linear search algorithm iterates through each item in our data structure in search for a specific value. If the current item matches, we can return, else we … Continue reading
Queue Data Structure
I have just published a program that shows examples of a queue data structure. This page shows examples of the Queue Data Structure. Queues operate under a property of First in First Out (FIFO), which is similar to waiting in … Continue reading
Posted in Blog, Examples
Tagged data, data structure, dequeue, enqueue, fifo, first, first in first out, front, lat, queue, rear, structure
Leave a comment
Stack Data Structure
I have just published a program that shows examples of a stack data structure. Stacks are an elementary Data Structure where all interaction with the data is done through the looking at the first element. There are two main operations … Continue reading
Posted in Blog, Examples
Tagged data, data structure, last in first out, LIFO, pop, push, stack, top
Leave a comment
Sorting Algorithms (Take Two)
Sorting is an essential part of our everyday lives. Because of this importance, many people have devoted much time towards improving the performance of different sorting procedures. Previously, I wrote a script comparing many of these algorithms. I decided to … Continue reading
Posted in Blog, Examples
Tagged algorithm, bubble sort, bubblesort, insertion sort, insertionsort, merge sort, mergesort, programming, quick sort, quicksort, script, selection sort, selectionsort, sort
1 Comment
