This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2024:classnotes [2024/09/05 19:34] – [Class Notes 8/27 Data/Discrete] gsalce | notes:data:fall2024:classnotes [2024/09/10 17:46] (current) – [Class Notes 9/5 Data / Discrete] gsalce | ||
---|---|---|---|
Line 37: | Line 37: | ||
====Class Notes 8/29 Data / Discrete==== | ====Class Notes 8/29 Data / Discrete==== | ||
- | Preamble: | + | ===Preamble:=== |
-------- | -------- | ||
Line 48: | Line 48: | ||
- | Class Discussion: | + | ===Class Discussion:=== |
---------------- | ---------------- | ||
Line 120: | Line 120: | ||
-Worked on projects | -Worked on projects | ||
+ | |||
+ | ====Class Notes 9/10 Data/ | ||
+ | |||
+ | ===Preamble: | ||
+ | -------- | ||
+ | |||
+ | -Class saved from the 15 minute rule by 40 seconds | ||
+ | |||
+ | -Next week's project is still the same for data and discrete. After next week's project, things will pivoting. | ||
+ | |||
+ | -Discrete' | ||
+ | |||
+ | -After that, will be pnc0, "Prime Number Calculator" | ||
+ | |||
+ | -As part of msi2, there may be the availability to submit msi2 for 1 and 2 pending understanding of concepts. | ||
+ | |||
+ | -For msi3, the singly linked list becomes a doubly linked list. Where previously there was only " | ||
+ | |||
+ | -Also msi3, expand the game to be something MORE than just Space Invaders, closer to Galaga. Have extra powerups, enemy movement, etc | ||
+ | |||
+ | |||
+ | ===Class Discussion: | ||
+ | ---------------- | ||
+ | |||
+ | -Looked at msi2 projects page. The functions will be instrumental in not only this project, but the many to come. They are the foundation for future learnings. | ||
+ | |||
+ | Example 1 (calling functions): | ||
+ | | ||
+ | List *rmlist( List * ); // The function exists | ||
+ | |||
+ | mylist = rmlist( mylist ); // The function is called | ||
+ | | ||
+ | mylist = obtain( mylist, &tmp ); // passing pointer by address | ||
+ | |||
+ | -When you need to make a list, use mklist(). | ||
+ | |||
+ | -To make nodes, use mknode(). | ||
+ | |||
+ | -To add nodes, use append() / insert(). | ||
+ | |||
+ | -At the end of the process, use clearlist() and rmlist(). | ||