wiki_research

personal research wiki
git clone https://a3nm.net/git/wiki_research/
Log | Files | Refs

greedy_algorithm (201B)


      1 # Greedy algorithm
      2 
      3 Algorithm where you can build an optimal solution step by step by making choices in a specific order, without having to do [backtracking]
      4 
      5 See also: [matroid]
      6 
      7 Up: [algorithm_type]