Topic outline
-
When we use programming for problem-solving purposes, data must be stored in certain forms (or data structures) so that operations on that data will yield a specific type of output. Imagine, for example, that a non-profit is having trouble staying afloat and needs more donations. It decides to keep track of its donors in a program to figure out who is contributing and why. The non-profit would first need to define the properties that would define those donors: name, address, amount donated, date of donation, and so on. Then, when the non-profit wants to determine how to best reach out to its donors, it can create a model of the average donor that contributes to the non-profit – say, for example, based on the size of the gift and the donor's geographical location – so that the non-profit can better determine where to focus its marketing.
-
Time: 36 hours
-
CEUs: 3.6
-
Free Certificate
In this case, the size of the gift and the donor's geographical location are the "data" of the donor model. If the non-profit used this model, it would estimate real donors by first generating an abstract donor. This is an example of using Abstract Data Types (ADTs). ADTs consider the data structure (how data about donors is stored) and provide the necessary operations on that structure. This course will discuss the theoretical and practical aspects of algorithms and data structures. We will also learn to implement Data Structures and algorithms in C/C++, analyze those algorithms, and consider their practical efficiency.
-