adding dog gifs

This commit is contained in:
Jidong Xiao
2025-02-11 18:44:06 -05:00
committed by JamesFlare
parent 81d7a4ca6c
commit eb9a9e796b

View File

@@ -1,4 +1,4 @@
# Lab 6 — Reversing Data 8 Ways: STL Vectors vs. STL Lists vs. Homemade Linked Lists # Lab 4 — Reversing Data in Different Ways: STL Vectors vs. STL Lists vs. Homemade Linked Lists
## Background - Introduction to GIF Formats and the Concept of Frames ## Background - Introduction to GIF Formats and the Concept of Frames
@@ -20,6 +20,12 @@ A GIF file is made up of a series of **frames**. Each frame is a static image th
In this lab, you will modify an existing C++ program. This program reverse a GIF file. In this lab, you will modify an existing C++ program. This program reverse a GIF file.
Here are examples of reversing GIF.
Example 1:
[Original GIF](dog_good.gif) [Reversed GIF](dog_bad.gif)
## Checkpoint 1A: Reverse with STL Vector Swaps ## Checkpoint 1A: Reverse with STL Vector Swaps
*estimate: TBD* *estimate: TBD*