[Alg] NP Problem
·
Algorithm
Two approaches1) develope a more efficient algorithm.2) try to prove that more efficient algorithm is NOТ possible ==> Quit/Stop. 1) try to find a more efficient algorithm using NEW design : O(n^3) -> O(n^2) -> O(nlogn)2) try to find a greater(better) lower bound using computational analysis. Example1. Sorting: nlogn (comparison)-> omega(nlogn): lower bound already found, algoritms already ..