A Month of Refreshing My CS Knowledge

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 →

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 →