Programming Abstractions

Programming Abstractions

Follow Programming Abstractions
Share on
Copy link to clipboard

This course is the natural successor to Programming Methodology and covers such advanced programming topics as recursion, algorithmic analysis, and data abstraction using the C++ programming language, which is similar to both C and Java. If you've taken the Computer Science AP exam and done well (sc…

Julie Zelenski


    • Aug 11, 2008 LATEST EPISODE
    • infrequent NEW EPISODES
    • 46m AVG DURATION
    • 27 EPISODES


    Search for episodes from Programming Abstractions with a specific topic:

    Latest episodes from Programming Abstractions

    9. Programming Abstractions Lecture 9

    Play Episode Listen Later Aug 11, 2008 48:03


    Julie goes over recursion and the proper ways to solve problems recursively. She continues with the example of a program that draws a fractal image and explains a Mandarin code to illustrate the different possibilities of drawing different pictures.

    10. Programming Abstractions Lecture 10

    Play Episode Listen Later Jul 23, 2008 47:01


    Julie explains procedural recursion and introduces permute code. She goes through another example of recursive code line by line, explaining each component. Recursive backtracking and it's usefulness are discussed.

    11. Programming Abstractions Lecture 11

    Play Episode Listen Later Jul 23, 2008 47:47


    Julie continues with recursive backtracking and introduces pointers and recursive data. Following, she focuses on solving the problems rather than the exact code and later uses the example of a program that will solve a Sudoku puzzle.

    12. Programming Abstractions Lecture 12

    Play Episode Listen Later Jul 23, 2008 41:44


    Julie continues to go over pointers and moves on to recursive data and linked lists. She explains the basics of pointers with two variables pointing to the same address.

    13. Programming Abstractions Lecture 13

    Play Episode Listen Later Jul 23, 2008 51:34


    Julie introduces linked lists and continues to discuss recursive data. She goes line by line through an example code she writes during the lecture. She then inserts variables in an order; she uses the example of an address book to explain this.

    14. Programming Abstractions Lecture 14

    Play Episode Listen Later Jul 23, 2008 49:32


    Julie starts off with algorithm analysis, the big-O notation and introduces sorting. She begins off with a brief overview of what algorithm analysis is and how to utilize it. Later, she continues to go through recursive algorithms and their uses.

    15. Programming Abstractions Lecture 15

    Play Episode Listen Later Jul 23, 2008 47:19


    Julie continues to cover sorting. She begins with an example of a selection sorting code and a graphic demo of the code in progress. Thereafter, she explains the different methods available to sort different kinds of data.

    16. Programming Abstractions Lecture 16

    Play Episode Listen Later Jul 23, 2008 47:34


    Julie continues with sorting, specifically quadratic and linearithmic sorting methods, and then explains how to reasonably partition data sets for quicksort. Thereafter, she proceeds to go over different functional templates for sorting algorithms.

    17. Programming Abstractions Lecture 17

    Play Episode Listen Later Jul 23, 2008 44:30


    Julie continues to go over sort templates and callback functions, then shows a final version of the sort template, one that will be extremely useful in the next homework assignment.

    18. Programming Abstractions Lecture 18

    Play Episode Listen Later Jul 23, 2008 50:53


    Julie introduces the 'implement vector' and discusses ADTs (abstract data types) in more detail. She then develops a Vector from the ground up, explaining each step as she goes.

    19. Programming Abstractions Lecture 19

    Play Episode Listen Later Jul 23, 2008 41:26


    Julie reiterates the rules for template implementers and continues by coding live with the class explaining each line of code in detail after writing it. Throughout the process of writing the code, she encounters several errors and has to debug it.

    20. Programming Abstractions Lecture 20

    Play Episode Listen Later Jul 23, 2008 50:59


    Julie continues discussing Vector and moves on to stack and queue, covering chapter ten in the course textbook. She goes over several rules for templates again to reinforce how important they are.

    21. Programming Abstractions Lecture 21

    Play Episode Listen Later Jul 23, 2008 46:01


    Julie talks about the buffer version of vector vs. stack and follows this with an example of cursor design. She also talks about linked list insertion and deletion. Cursor movement is the next topic covered.

    22. Programming Abstractions Lecture 22

    Play Episode Listen Later Jul 23, 2008 49:44


    Julie discusses map as a vector and describes a different, possibly better, strategy. The basics of trees and their usefulness and how they can be used with binary search is then introduced.

    23. Programming Abstractions Lecture 23

    Play Episode Listen Later Jul 23, 2008 45:50


    Julie shows a YouTube video of Barack Obama answering a question about what kind of sorting algorithm he would use to sort a list of data. She also gives several examples of problems that are capable of being solved with sorting.

    24. Programming Abstractions Lecture 24

    Play Episode Listen Later Jul 23, 2008 50:18


    Julie introduces hashing and it's uses in search and retrieval; map implementations and the different kinds of search algorithms are then discussed. Thereafter she explains that logarithmic searches are relatively fast and often finish the search.

    25. Programming Abstractions Lecture 25

    Play Episode Listen Later Jul 23, 2008 50:35


    Julie examines a case study and opening up the lexicon file, which is complicated; she walks the students through the code and explains why she wrote it as she did as opposed to a sorted vector or binary search tree.

    26. Programming Abstractions Lecture 26

    Play Episode Listen Later Jul 23, 2008 49:04


    Julie ties up the "loose ends" of the course: after a general review of the concepts covered in the course, she asks which of two examples is the better. She then covers manipulation of dynamic data structures (lists, trees, graphs).

    27. Programming Abstractions Lecture 27

    Play Episode Listen Later Jul 23, 2008 41:33


    In the final lecture, Keith talks about the C++ programming language. He starts of with C++ history, C++ without CS 106 and what comes next.

    1. Programming Abstractions Lecture 1

    Play Episode Listen Later Jul 23, 2008 43:02


    Julie Zelenski gives an introduction to the course, recursion, algorithms, dynamic data structures and data abstraction; she also introduced the significance of programming and gives her opinion of what makes 106B "great;" C++ is introduced, too.

    2. Programming Abstractions Lecture 2

    Play Episode Listen Later Jul 23, 2008 43:47


    Julie describes the similarities between C++ and Java, which include general syntax, primitive variable types, operators and control structures; she proceeds to go through the code of a basic C++ program and explains each individual piece of code.

    3. Programming Abstractions Lecture 3

    Play Episode Listen Later Jul 23, 2008 44:39


    Julie goes over C++ libraries and explains what they are and how they are useful. She continues to introduce C++ basics, including strings, various operators on strings and comparing two strings.

    4. Programming Abstractions Lecture 4

    Play Episode Listen Later Jul 23, 2008 50:26


    Julie continues to cover the console input/output in C++ and discusses the file I/O and changing between an old style string to a C++ string format. She also begins to go over stream operations and their basic use as well as object oriented programming.

    5. Programming Abstractions Lecture 5

    Play Episode Listen Later Jul 23, 2008 45:29


    Julie discusses the use of templates, vectors and template specialization. She then goes through an example of code line by line explaining each part in detail. Finally, she goes on to explain what grid interfaces are.

    6. Programming Abstractions Lecture 6

    Play Episode Listen Later Jul 23, 2008 43:00


    In the sixth lecture, Julie discusses sequential containers, associative containers, map classes/interfaces, iteration over maps and set classes. She explains why set classes are different and sometimes better to use.

    7. Programming Abstractions Lecture 7

    Play Episode Listen Later Jul 23, 2008 47:31


    Julie explains the idea of functions as data and specific plot functions and continues onto client feedback functions and ADTs. She then delves into recursion and solving problems using recursion.

    8. Programming Abstractions Lecture 8

    Play Episode Listen Later Jul 23, 2008 42:36


    Julie talks about solving problems recursively. She covers functional recursion with the simple example of writing an exponential function using recursion.

    Claim Programming Abstractions

    In order to claim this podcast we'll send an email to with a verification link. Simply click the link and you will be able to edit tags, request a refresh, and other features to take control of your podcast page!

    Claim Cancel