Linked lists
-
High performance linked list sorting in JavaScript
May 20, 2015 - 3 minute read
This post describes an approach to efficiently sort linked lists from SQL in client-side code. While the below examples are written in JavaScript, you could use the same basic technique in almost any modern language.
-
Implementing a linked list in SQL
May 17, 2015 - 3 minute read
Recently I was challenged with enabling users to drag and drop items in a list to sort them in any order, and persisting that order in a SQL database.
Theodore Brown