首页 > 其他 > 详细

[Leetcode] Maximal Square

时间:2015-08-01 15:37:26      阅读:123      评论:0      收藏:0      [点我收藏+]
一、枚举所有宽度为举着宽度的子矩阵,从中找出是否具有相应长度的正方形,复杂度为O(n^3);
二、[1]中使用动态规划,decrease the complexity to O(n^2)
dp[i][j] mean the maximum square which has right-down corner (i,j)
the transform function is listed as below:
dp[i][j] = min(dp[i-1][j],dp[i][j-1],dp[i-1][j])+1;
 

[1] http://www.cnblogs.com/easonliu/p/4548769.html

[Leetcode] Maximal Square

原文:http://www.cnblogs.com/deepblueme/p/4694064.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!