User Tools

Site Tools


notes:data:fall2024:classnotes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
notes:data:fall2024:classnotes [2024/09/05 19:33] – [Class Notes 9/3 Data / Discrete] gsalcenotes:data:fall2024:classnotes [2024/09/10 17:46] (current) – [Class Notes 9/5 Data / Discrete] gsalce
Line 3: Line 3:
 ====Class Notes 8/27 Data/Discrete==== ====Class Notes 8/27 Data/Discrete====
  
-Preamble:+===Preamble:===
 -------- --------
  
Line 20: Line 20:
 -Journals / Class documents available -Journals / Class documents available
  
-Class Discussion:+===Class Discussion:===
 ---------------- ----------------
  
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/Discrete====
 +
 +===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's first branch project will be dsr0, "Discrete Skills Review"
 +
 +-After that, will be pnc0, "Prime Number Calculator". This will be the same as the comporg project, minus the assembly.
 +
 +-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 "->next", there will also be a "->prev" and will help tremendously with certain functions like insert() for example.
 +
 +-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().
  
notes/data/fall2024/classnotes.1725564822.txt.gz · Last modified: 2024/09/05 19:33 by gsalce