Posts

Showing posts from May, 2026

Algorithms & Data Structure Designs

Image
         An algorithm is a set of instructions used to solve a specific problem. In the case of let's say a tree map, the purpose of this type of algorithm is to organized data in a hierarchical structure while also showing relationships between categories and subcategories visually. Another good example is the search algorithm which helps find information inside a script, while the sorting algorithm helps organize arrays or lists.      Data structures are equally as important when it comes to developing code because it determines how data is organized and accessed within an application. Choosing the correct data structure is paramount to the success of the code. For example arrays are useful when data needs to be accessed quickly through indexes because they allow direct access to elements. In my own experience, I work with data structures regularly when automating accounting and reporting processes. For example, ERP data extracted into Excel or ...