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 →

Singly Linked List Part 1

Paper First Sitting down to write from scratch is a bit humbling. The big-o operations give me a hint about what linked list operations I need to implement – search, access, insert, delete. I did not start in an editor. I started by writing pseudo-code in a notebook. Once I had the pseudo-code with worked […]

Read More →

Refreshing My Computer Science Knowledge

Refresh It’s been years since I’ve coded C, straight C, from scratch. I use my computer science knowledge to solve problems all the time, but not in C. I can look at and follow along C, make maintenance changes, and those sorts of edits without a problem. Starting from scratch would mean breaking out reference […]

Read More →