Category

Computers & Programming

Computers & Programming

Linked List in Swift

I implemented a linked list data structure in Swift. It seemed like a good idea for porting the Linkage source code from C++ to Swift but I’ve also read that using a linked list is a terrible idea. This is a bit of a rant on that subject……

Continue reading
Computers & Programming

Driving Route Generation

A year ago, I wrote code to generate an optimized route between a set of locations. The algorithm was based on the third of four obvious algorithms that solve the traveling salesman problem. The traveling salesman problem is the problem of getting the shortest route between a set…

Continue reading