Updated Aug 24, 2023 Java mumaroffice / Bubble-Sort-Algorithm Star 2 Code Issues Pull requests This includes a C++ project on implementing a Bubble Sort Algorithm.This Algorithm sorts numbers entered in an array in the ascending order. c-plus-plus programming bubble-sort bubble-sort-algorith...
fun bSort(arr:IntArray):IntArray{ var swap = true while(swap){ swap = false for(i in 0 until arr.size-1){ if(arr[i] > arr[i+1]){ val temp = arr[i] arr[i] = arr[i+1] arr[i + 1] = temp swap = true } } } return arr } fun main(args: Array<String>) { val ...
OpenFrameworks - A cross platform open source toolkit for creative coding in C++. [MIT] website Qt ⚡ - A cross-platform application and UI framework. [GPL/LGPL/Commercial] Reason - A cross platform framework designed to bring the ease of use of Java, .Net, or Python to developers who...