This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
notes:data:fall2024:classnotes [2024/08/29 18:45] – created - external edit 127.0.0.1 | notes:data:fall2024:classnotes [2024/09/10 17:46] (current) – [Class Notes 9/5 Data / Discrete] gsalce | ||
---|---|---|---|
Line 1: | Line 1: | ||
======DATA notes====== | ======DATA notes====== | ||
+ | |||
+ | ====Class Notes 8/27 Data/ | ||
+ | |||
+ | ===Preamble: | ||
+ | -------- | ||
+ | |||
+ | -Your soul is now on fire! | ||
+ | |||
+ | -Brief history lesson on tables | ||
+ | |||
+ | -Discussed AI policies, don't do it | ||
+ | |||
+ | -Opening projects: abc0 and btt0, do it | ||
+ | |||
+ | -Next due project, making space invaders (msi0 and after that msi1) | ||
+ | |||
+ | -First four pct's are available as of writing. 0 and 1 are due end of tomorrow. | ||
+ | |||
+ | -Journals / Class documents available | ||
+ | |||
+ | ===Class Discussion: | ||
+ | ---------------- | ||
+ | |||
+ | msi0 - using malloc' | ||
+ | |||
+ | In your struct for sprites (sprites being the things on screen), consider an X and Y for each on screen. | ||
+ | |||
+ | *Key instruction, | ||
+ | |||
+ | msi1 - the same project, but converting msi0 to use a linked list instead of an array, possibly the conversation for Thursday 8/29 | ||
+ | |||
+ | Matt's class will make you think so hard, it'll make you physically ill! | ||
+ | |||
+ | *hg log for keeping track of commits | ||
+ | |||
+ | ====Class Notes 8/29 Data / Discrete==== | ||
+ | |||
+ | ===Preamble: | ||
+ | -------- | ||
+ | |||
+ | -Shared funny meme about being tortured by the butchering of modern language in general chat. | ||
+ | |||
+ | -Accidently induced severe brainrot on the class. | ||
+ | |||
+ | -Ken and Xavier have never been seen in the same room together. Coincidence? | ||
+ | |||
+ | |||
+ | |||
+ | ===Class Discussion: | ||
+ | ---------------- | ||
+ | |||
+ | -Worked on projects and other things. | ||
+ | |||
+ | -Next time we will discuss linked lists for msi1. | ||
+ | |||
+ | ====Class Notes 9/3 Data / Discrete==== | ||
+ | |||
+ | ===Preamble: | ||
+ | -------- | ||
+ | |||
+ | -btt0 is coming due tomorrow. msi0 is for next Wednesday | ||
+ | |||
+ | -msi1 and msi2 are made available. After 0, we are going to switch over to using data structures. The first to explore is singly-linked lists. The idea is to take the array-based msi0 and update it to linked list stuff. Both msi1/2 are related to singly-linked lists. After 2, the project will involve double-linked lists, an evolution of space invaders maybe. | ||
+ | |||
+ | |||
+ | ===Class Discussion: | ||
+ | ---------------- | ||
+ | |||
+ | -We talk about HOW to do linked lists. | ||
+ | |||
+ | -First, we know an array has an allocated, fixed amount of space, filled with elements. Can't use more or deallocate less. Big use in C to know how much space we needed exactly. Now that we get into deeper programming, | ||
+ | |||
+ | -The first data structure is what is known as a " | ||
+ | |||
+ | -NOT EVERY NODE IS ONE AFTER THE OTHER, ONE NODE DOES POINT TO ANOTHER, BUT AWARENESS OF CONNECTIVITY IS REQUIRED. | ||
+ | |||
+ | -You want to make a node, ideally a struct, and in the struct is the data the node will have. Nodes are the foundation of a linked list. | ||
+ | |||
+ | *In this class, we will explore only a few kinds data structures. There exist many to this day. | ||
+ | |||
+ | *The times, they are a' | ||
+ | |||
+ | -Nodes need to have a pointer. For singly-linked lists, the nodes need to at least have a " | ||
+ | |||
+ | -Another thing that comes recommended is a tmp node pointer called tmp. This looks like: | ||
+ | |||
+ | Node *tmp = NULL | ||
+ | tmp = (Node *)malloc(sizeof(Node)); | ||
+ | |||
+ | -After creating a node, we want to make sure the next points to NULL. This is the node creation operation. | ||
+ | |||
+ | -You will also want to create a list to chain the nodes together thru appending, obtaining, and maybe inserting. | ||
+ | |||
+ | -Ideally, it would help to have a pointer fixed in place, something like: | ||
+ | |||
+ | Node *start = NULL; | ||
+ | |||
+ | -Notice how in a singly-linked list, we can only go forawrd, but not back. | ||
+ | |||
+ | -Avoid using " | ||
+ | |||
+ | -msi1: take out the array functionality, | ||
+ | |||
+ | -msi2: making many more functions, replacing single linked lists to double linked lists. | ||
+ | |||
+ | ====Class Notes 9/5 Data / Discrete==== | ||
+ | |||
+ | ===Preamble: | ||
+ | -------- | ||
+ | |||
+ | -Interesting: | ||
+ | |||
+ | -Lamenting the failures of The Acolyte. | ||
+ | |||
+ | -Discussed past projects that were due yesterday, mainly btt0. | ||
+ | |||
+ | ===Class Discussion: | ||
+ | ---------------- | ||
+ | |||
+ | -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(). | ||