From 88fc8bb03df1ee05068c1e554308a79d61b19f13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=AD=E4=B9=9D=E9=BC=8E?= <109224573@qq.com> Date: Sat, 2 Jan 2021 10:12:34 +0800 Subject: [PATCH] fix: md style (#779) --- data_structures/array/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/array/README.md b/data_structures/array/README.md index 5534aae9..bf70cccb 100644 --- a/data_structures/array/README.md +++ b/data_structures/array/README.md @@ -2,7 +2,7 @@ Simple array of integers. With I/O functions, Sort Functions and Search Functions. -#Sort Function +## Sort Function The Sort function sorts the elements in the range in a particular order. The different types of sorting methods are Bubble Sort, Selection Sort, Merge Sort and Quick Sort. Bubble Sort repeatedly sorts the adjacent elements if they are in wrong order.