A type of linked list that can be traversed forwards and backwards.
This repository is a brief demonstration of my knowledge of the Git version control system and GitHub functionality.
This repository is an example of how I was able to:
- Stage and commit changes
- Create a pull request
- Create and merge a branch
- Click the green button
Code
to reveal a dropdown menu. - Click
Download ZIP
to download a ZIP file to your local machine. - Navigate to the
Downloads
directory on your local machine. - Extract the ZIP file with the use of a file archiver (such as 7-Zip).
Note: By default, unless you specify your directory, the directory of the cloned repository will be /home/YOUR_USERNAME
.
git clone https://github.com/jakevastola/doubly_linked_list.git
gcc doubly_linked_list.c -o doubly_linked_list.out
./doubly_linked_list.out
[26] - [6] - [70] - [40] - [89]
After inserting 10 into the front:
[10] - [26] - [6] - [70] - [40] - [89]
After inserting 20 into the end:
[10] - [26] - [6] - [70] - [40] - [89] - [20]
Enter the node you want to delete: 40
Just deleted 40:
[10] - [26] - [6] - [70] - [89] - [20]
This repository is licensed under the MIT License.