Initial commit

This commit is contained in:
2020-12-07 09:58:52 +01:00
commit a390fdc558
8 changed files with 630 additions and 0 deletions

4
LinearSearch.h Normal file
View File

@@ -0,0 +1,4 @@
#pragma once
void Read(int a[], int& size_ref, int max_size);
void Print(const int a[], int size);
int LinearSearch(const int array[], int key, int size);