12-02-2020, 10:36 AM
Could you guys please give me some cool programming algos that arent taught in school? An quick example also would be helpful.
breefan Wrote:Algorithms to solve what problem? In algorithms class, the first ones you go over are typically sorting algorithms. You start with something like bubble sort, then move on to quicksort.I mean high school programming classes. What is bubble sort?
chickeneligible1 Wrote:Ok I just found out about recursion, and it has opened up so many ways of seeing a problem's solution that I'd never think up before. What are some good recursion-implemented algos that I can learn?If you like recursion check out the Liso language - its basically built on recursion. One famous recursive algorithm is binary search. Look it up.