An open API service indexing awesome lists of open source software.

https://github.com/tastyep/maximum-square

Implementation of an algorithm to find the maximum square sub matrix
https://github.com/tastyep/maximum-square

Last synced: 7 months ago
JSON representation

Implementation of an algorithm to find the maximum square sub matrix

Awesome Lists containing this project

README

          

# Maximum-Square
Implementation of an algorithm to find the maximum size square sub-matrix

### Requirements
A compiler supporting the basic C++11 features

### Complexity

Time Complexity: O(mn) where m is number of rows and n is number of columns in the given matrix.
Auxiliary Space: O(mn) where m is number of rows and n is number of columns in the given matrix.
Algorithmic Paradigm: Dynamic Programming