User Tools

Site Tools


notes:data:spring2024:projects:cgfx

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:spring2024:projects:cgfx [2024/03/12 14:05] – [doubly linked stack] rspringenotes:data:spring2024:projects:cgfx [2024/03/14 03:31] (current) – [doubly linked stack] rspringe
Line 18: Line 18:
   * Clubs   * Clubs
 =====doubly linked stack===== =====doubly linked stack=====
 +**Reference:** https://www.geeksforgeeks.org/introduction-to-stack-data-structure-and-algorithm-tutorials/
 +
 A doubly linked list is nearly similar to a singly linked list, as it is a list of structs, where each struct has a pointer to the next struct in the list. A doubly linked list is nearly similar to a singly linked list, as it is a list of structs, where each struct has a pointer to the next struct in the list.
  
Line 67: Line 69:
 =====card game: freecell===== =====card game: freecell=====
  
 +Freecell is a Solitaire card game where the goal is to move piles of cards around in order to get each card to four "foundations".
 ====foundations==== ====foundations====
 +
 +The foundations are where you need to get each card to by the end of the game in order to win.
  
 ===Foundation logic=== ===Foundation logic===
  
 +There are four foundations, each of them separated by suit. A card of any suit can go into any foundation, but once one suit is in a foundation, then only cards of that suit can go into only that foundation.
  
 +Foundations are also sorted by rank: to start a foundation, you need to place an Ace onto an empty foundation, then place the next value card of the same suit onto that Ace, and so on from Ace-King.
 ====storage==== ====storage====
 ====tableau==== ====tableau====
 +The tableau is the main playing area of the game. This is where the various piles of cards get moved around in order to get to cards that can be moved to a foundation.
 ====pile==== ====pile====
  
notes/data/spring2024/projects/cgfx.1710252341.txt.gz · Last modified: 2024/03/12 14:05 by rspringe