A Month of Refreshing My CS Knowledge It’s been over a month since I started refreshing my CS knowledge project. Up until this point I have focused on my C and data structure programming skills. I created a repo of basic data-structures along with C unit tests – https://github.com/danaspisak/c-refresh. I’ve covered singly-linked lists, doubly-linked lists, […]
Read More →Category: C Refresh
Doubly Linked List C Refresher
C Refresh – Doubly Linked Lists I worked through converting my single linked list routines to doubly linked list routines. Some of functions didn’t make sense. There was a lot of duplication between the two implementations. I kept with the unit testing using Ceedling. I did have to do a lot more debugging when my […]
Read More →Singly Linked List Part 2
Part 2 Part 2 of singly linked list is a combination of exercises from geeksforgeek and improving my environment. You can find part 1 here. Environment I spent some time setting up a build and debug environment in Eclipse. Running Ceedling tests is a couple clicks and returns a nice report. My setup followed the […]
Read More →