Tag:algorithm
All the articles with the tag "algorithm".
Using a variation on RLE to achieve lossless compression for near-consecutive or grouped tabular data
November 18, 2022 | 03:00 PMIn scenarios where there is a requirement for storing masses of loosely consecutive or grouped data, a variation of run-length-encoding that repeats content until overidden can be implemented to achieve a form of lossless compression
Update on compression for near-consecutive or grouped tabular data
February 4, 2023 | 03:00 PMAn update regarding the RLE compression post
Implementing a decentralysed
February 4, 2023 | 03:00 PMIn scenarios where there is a requirement for storing masses of loosely consecutive or grouped data, a variation of run-length-encoding that repeats content until overidden can be implemented to achieve a form of lossless compression
Finding the optimal travel paths between a subset of UK railway stations using Dijkstra's algorithm
March 8, 2023 | 03:00 PMI’m creating a graph of a small subset of train stations in the UK, and plan and am using dijkstra’s algorithm to find the most efficient path inbetween stations.