Posts

Showing posts from February, 2023

Algorithms and Data Structures Anyone?

  Algorithms and Data Structures Anyone?     This all sounds very technical however, at their core, data structure s and algorithms are necessary for every computer system and program to work properly in said system . These two principles work independently of one another while also maintaining the necessary relationship to build and execute the programs.   A program must have correct use of data structures for the algorithm design to allow the program itself to “work” .  Algorithmic design refers to the mathematical process or method used when attempting to solve problems . There are a number of ways to design these algorithms , and each comes with its own complexit ies . The two main design approaches are Top-Down and Bottom-up .  Top-Down focuses on taking a larger problem and dividing it up into smaller problems continuously until the complex problem is eventually  solved. Bottom-up is the reverse of this where you take parts of complex pro...