Jay Vinay5 minDevelopment of GUI using Qt-DesignerWhen laying out your Qt GUIs it can be quite a tricky task to place every widget in the right position on your forms. Fortunately, Qt...
Jay Vinay1 minPattern Matching AlgorithmsPattern matching algorithms are useful for searching a string within another string. There are usually 3 main kinds of Algorithms in this...
Jay Vinay1 minPrims Method:A group of edges that connects two set of vertices in a graph is called "cut in graph theory" So at every step of primes algorithm, we...
Jay Vinay1 minGreedy Algorithms:used for optimization problems at every step, we can make a choice that looks best at the moment and we'll get optimal solution of...