/** * helpers.h * * week 3 section * fall 2013 * * function declarations for searching and sorting algorithms */ #include // binary search bool binary_search(int value, int values[], int n); // bubble sort void bubble_sort(int values[], int n); // selection sort void selection_sort(int values[], int n);