hugo_to_json 0.3.9

A library and command line tool for producing a JSON representation of a Hugo site.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

+++
date = "2016-04-18"
draft = false
title = """Sorting Algorithms"""
slug = "sorting-algorithms-2"
tags = ['revision', 'algorithms']
banner = ""
aliases = ['/sorting-algorithms-2/']
+++

Sorting algorithms are kind of useful. There isn't a 'best' algorithm but there are a variety of algorithms that each have a merit in a given situation. They solve the problem of ordering a list of objects or values.

This blog post is going to explore the different algorithms and I'll write a simple Java program for each to demonstrate how they work.