Skip to content

Instantly share code, notes, and snippets.

View LucasPLopes's full-sized avatar

Lucas Lopes Pereira LucasPLopes

View GitHub Profile
@LucasPLopes
LucasPLopes / selectionsort.c
Created August 19, 2019 12:30
Selection sort in C
#include<stdio.h>
void selectionsort(int *v, int n){
int index;
int aux ;
for(int i = 0; i < n; i++)
{
index = i;
for(int j = i +1 ; j< n - 1; j++){