Better ome comments

This commit is contained in:
sungbin 2018-11-13 13:42:00 +09:00
parent 72de3a6ca8
commit a498bf1de9
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
//sorting of linked list using bubble sort
//sorting of array list using bubble sort
#include <stdio.h>
/*Displays the array, passed to this method*/

View File

@ -1,4 +1,4 @@
//sorting of linked list using insertion sort
//sorting of array list using insertion sort
#include <stdio.h>
/*Displays the array, passed to this method*/

View File

@ -1,4 +1,4 @@
//sorting of linked list using selection sort
//sorting of array list using selection sort
#include <stdio.h>
/*Displays the array, passed to this method*/