From e4d9a2027a0eea8be3c74fd40add3f39bb647de3 Mon Sep 17 00:00:00 2001
From: Tom Almeida <tommoa@ucc.gu.uwa.edu.au>
Date: Thu, 6 Apr 2017 13:30:16 +0800
Subject: [PATCH] Update README.md

---
 README.md | 131 ++++++++++++------------------------------------------
 1 file changed, 28 insertions(+), 103 deletions(-)

diff --git a/README.md b/README.md
index 6f5ecde..065f24b 100644
--- a/README.md
+++ b/README.md
@@ -1,146 +1,71 @@
 This project is a collection of various algorithms that can be used for various applications. Examples of the implimentations have been written in C, C++ and Rust
 
 
-<a id="orgaca3a9e"></a>
 
 # Instructions
 
 When editing the readme, do it as an org file instead of md, and export it to md. You will need to do some modification afterwards (It's relatively simple though)
 
 
-<a id="org9a7f264"></a>
 
-# Sorting
+## Sorting
 
+## Searching
 
-<a id="orga159917"></a>
+* [Binary search](Pseudocode/Searching/binarysearch.html)
 
-# Searching
+## Path finding
 
+## Tree/Graph functions
 
-<a id="org007b8d7"></a>
+## Others
 
-## [Binary search](Pseudocode/Searching/binarysearch.html)
+## Languages
 
-
-<a id="org7427b8d"></a>
-
-# Path finding
-
-
-<a id="orgd85b1a6"></a>
-
-# Tree/Graph functions
-
-
-<a id="orge5d3750"></a>
-
-# Others
-
-
-<a id="orge4fcf29"></a>
-
-# Languages
-
-
-<a id="orge245488"></a>
-
-## C
+### C
 
 This section contains all of the algorithms written in C
 
+* Sorting
 
-<a id="org534c81c"></a>
-
-### Sorting
-
-
-<a id="orga0dfc2d"></a>
-
-### Searching
-
-1.  [Binary search](C/Searching/BinarySearch.c)
-
-
-<a id="orgb04e7da"></a>
-
-### Path finding
-
-
-<a id="org89a7612"></a>
-
-### Tree/Graph functions
+* Searching
 
+** [Binary search](C/Searching/BinarySearch.c)
 
-<a id="org60d092e"></a>
+* Path finding
 
-### Others
+* Tree/Graph functions
 
+* Others
 
-<a id="orgfa14148"></a>
-
-## C++
+### C++
 
 This section contains all of the algorithms written in C++
 
+* Sorting
 
-<a id="orgdb46289"></a>
-
-### Sorting
-
-
-<a id="orgf85ed45"></a>
-
-### Searching
-
-1.  [Binary search](C++/Searching/BinarySearch.cpp)
-
-
-<a id="org8b97fbd"></a>
-
-### Path finding
-
-
-<a id="org7760361"></a>
-
-### Tree/Graph functions
+* Searching
 
+**  [Binary search](C++/Searching/BinarySearch.cpp)
 
-<a id="org6e32235"></a>
+* Path finding
 
-### Others
+* Tree/Graph functions
 
+* Others
 
-<a id="org2a9ef56"></a>
-
-## Rust
+### Rust
 
 This section contains all of the algorithms written in Rust
 
+* Sorting
 
-<a id="org62058a4"></a>
-
-### Sorting
-
-
-<a id="org870b3fe"></a>
-
-### Searching
-
-1.  [Binary search](Rust/Searching/BinarySearch.rs)
-
-
-<a id="orgaee84af"></a>
-
-### Path finding
-
-
-<a id="orgb9952e8"></a>
-
-### Tree/Graph functions
+* Searching
 
+**  [Binary search](Rust/Searching/BinarySearch.rs)
 
-<a id="org39bc08f"></a>
+* Path finding
 
-### Others
+* Tree/Graph functions
 
+* Others
\ No newline at end of file
-- 
GitLab