diff --git a/C++/bubble_sort.cpp b/C++/bubble_sort.cpp deleted file mode 100644 index 831572c..0000000 --- a/C++/bubble_sort.cpp +++ /dev/null @@ -1,41 +0,0 @@ -#include -using namespace std; -void swapping(int &a, int &b) { //swap the content of a and b - int temp; - temp = a; - a = b; - b = temp; -} -void display(int *array, int size) { - for(int i = 0; i array[j+1]) { //when the current item is bigger than next - swapping(array[j], array[j+1]); - swaps = 1; //set swap flag - } - } - if(!swaps) - break; // No swap in this pass, so array is sorted - } -} -int main() { - int n; - cout << "Enter the number of elements: "; - cin >> n; - int arr[n]; //create an array with given number of elements - cout << "Enter elements:" << endl; - for(int i = 0; i> arr[i]; - } - cout << "Array before Sorting: "; - display(arr, n); - bubbleSort(arr, n); - cout << "Array after Sorting: "; - display(arr, n); -} \ No newline at end of file diff --git a/C++/spiral.cpp b/C++/spiral.cpp new file mode 100644 index 0000000..3091e67 --- /dev/null +++ b/C++/spiral.cpp @@ -0,0 +1,42 @@ +// C++ Program to print a matrix spirally + +using namespace std; +void spiralPrint(int m, int n, int a[R][C]) +{ + int i, k = 0, l = 0; + + while (k < m && l < n) { + for (i = l; i < n; ++i) { + cout << a[k][i] << " "; + } + k++; + + for (i = k; i < m; ++i) { + cout << a[i][n - 1] << " "; + } + n--; + if (k < m) { + for (i = n - 1; i >= l; --i) { + cout << a[m - 1][i] << " "; + } + m--; + } + + if (l < n) { + for (i = m - 1; i >= k; --i) { + cout << a[i][l] << " "; + } + l++; + } + } +} + +int main() +{ + int a[3][6] = { { 1, 2, 3, 4, 5, 6 }, + { 7, 8, 9, 10, 11, 12 }, + { 13, 14, 15, 16, 17, 18 } }; + + spiralPrint(R, C, a); + return 0; +}