Address
Whiteland, IN 46184

Work Hours
Monday to Friday: 9AM - 5PM
Weekend: 1PM - 3PM

Shootfish

Shootfish

The Downsides of Technology

The whole world seems to be entirely taken over by technology and all its benefits and advantages as they help businesses thrive and conduct business activities with ease. There is no secret that business owners, especially start-ups are more likely…

Queue Data Structure

OBJECTIVES Define what a queue is Understand use cases for a queue Implement operations on a queue data structure What is a Queue? A queue is a linear data structure that follows a particular order for insertion and deletion. The…

WordPress vs Frameworks

In this day and age where modern-day web development frameworks (and libraries) are the order of the day, it is hard to remember a time before all this noise about them as there seems to be a library and framework…

Stack Data Structure

OBJECTIVES Define what a stack is Understand use cases for a stack Big O of the stack What is a Stack? A stack is a linear data structure that follows a particular order for insertion and deletion. The is referred…

Doubly Linked List

Prerequisites  You should have read the big O notation You should have read the data structure introduction You should have read the Singly Linked List data structure Things to be discussed are Construct a Doubly Linked List Compare and contrast…

Website vs Apps: What do you need?

In this present day when everything is being digitised, it is hard to do anything without using the internet or some form of digital technology. Due to this reason, a lot of businesses and jobs are being done online which…

Single Linked List

The Single Linked list is our first data structure in the data structures series.  What is a Linked List? A data structure that contains a head, tail and length property. Linked Lists consist of nodes, and each node has a…