Hello, World. I'm Jason.
Thanks for visiting my website. Check out my thoughts on my blog, or send a message if you'd like to get in touch.
If you wanna know more about me, check out this page. If you'd like for me to work on your software project, check out the different services that I offer.
Latest Blog Posts
-
Working with The Graph Data Structure in Go
Representing Graphs in Code Graphs are just a data structure where a bunch of nodes are connected to each other by imaginary lines called edges. They're really similar to linked lists and trees except pretty much any node can be connected to any o...
-
Binary Trees In Golang
Binary trees are a fairly simple data structure where you have a node that contains some data, and a max of two child nodes that also contain some data, like this: 1 / \ 2 3 Each child node can also have up to two child nodes, and...
-
Working With Linked Lists In Golang
A linked list is a linear data structure, which means it is another a way to represent a sequence of things inside computer memory. You're probably already familiar with arrays, so how are they any different? The main thing to understand about arra...