Articles in this series
And why you should come along.
All code from this tutorial can be found here. After completing this tutorial you should be able to: Use functions, structs, and pointers in Go Create linked lists Traverse the linked list, find its length and print out the nodes in the linked li...
Doubly Linked & Circular Linked Lists
By the end of this article you should: Understand how to improve the memory efficiency of Doubly Linked Lists. Understand how pointers and garbage collection determine what can and cannot be implemented in Go. TLDR: It's impossible to implement t...
Using Arrays in the backend.
All code from this tutorial can be found here. After completing this tutorial you should be able to: Understand the organization of code in Go. Use linked lists to implement stacks in Go. This article is going to be a short one. One you can proba...