小奥的学习笔记

  • Home
  • Learning & Working
    • Speech Enhancement Notes
    • Programming language
    • Computer & DL
    • MOOC
  • Life
    • Life Time
    • Thinking & Comprehension
    • Volunteer
    • Plan
    • Travel
  • Footprints
  • GuestBook
  • About
    • About Me
    • 个人履历
    • 隐私策略
  1. 首页
  2. Study-notes
  3. Programming language
  4. Algorithm
  5. Leetcode
  6. 正文

Leetcode题目解析(191126):85&94

2019年11月26日 939点热度 0人点赞 0条评论

Leetcode 85:最大矩形

题目描述

给定一个仅包含 0 和 1 的二维二进制矩阵,找出只包含 1 的最大矩形,并返回其面积。

代码实现

int maximalHistRec(vector<int>& height) {
    stack<int> stackStore;
    int res = height[0];
    for (int i = 0; i < height.size(); i++) {
        if (stackStore.empty() || height[i] >= height[stackStore.top()])
            stackStore.push(i);
        else {
            while (!stackStore.empty() && height[stackStore.top()] > height[i]) {
                int ind = stackStore.top();
                stackStore.pop();
                res = max(res, stackStore.empty() ? height[ind] * i : height[ind] * (i - stackStore.top() - 1));
            }
            stackStore.push(i);
        }
    }
    return res;
}
int maximalRectangle(vector<vector<char> >& matrix) {
    if (matrix.size() == 0)
        return 0;
    int res = 0;
    vector<int> height;
    for (int i = 0; i < matrix[0].size(); i++) {
        if (matrix[0][i] == '1')
            height.push_back(1);
        else
            height.push_back(0);
    }
    height.push_back(0);
    res = maximalHistRec(height);
    for (int i = 1; i < matrix.size(); i++) {
        for (int j = 0; j < matrix[0].size(); j++) {
            if (matrix[i][j] == '1')
                height[j] += 1;
            else
                height[j] = 0;
        }
        res = max(res, maximalHistRec(height));
    }
    return res;
}

参考自:
https://www.nowcoder.com/profile/1941588/codeBookDetail?submissionId=12684718

执行用时&内存消耗

复杂度分析

Leetcode 94:二叉树的中序遍历

题目描述

给定一个二叉树,返回它的中序遍历。请使用迭代算法

代码实现

vector<int> inorderTraversal(TreeNode* root)
{
    stack<TreeNode* > stack;
    vector<int> res;
    TreeNode* tmp=root;
    while(tmp||stack.size())
    {
        while(tmp){
            stack.push(tmp);
            tmp=tmp->left;
        }
        tmp=stack.top();
        stack.pop();
        res.push_back(tmp->val);
        tmp=tmp->right;
    }
    return res;
}

时间和空间占用

复杂度分析

本作品采用 知识共享署名 4.0 国际许可协议 进行许可
标签: 暂无
最后更新:2019年11月26日

yszhang

这个人很懒,什么都没留下

打赏 点赞
< 上一篇
下一篇 >

文章评论

razz evil exclaim smile redface biggrin eek confused idea lol mad twisted rolleyes wink cool arrow neutral cry mrgreen drooling persevering
取消回复

搜索
欢迎关注我的个人公众号
最新 热点 随机
最新 热点 随机
DEEPFILTERNET:一种基于深度滤波的全频带音频低复杂度语音增强框架 奥地利匈牙利九日游旅程 论文阅读之Study of the General Kalman Filter for Echo Cancellation 小奥看房之鸿荣源珈誉府 杭州往返旅途及西溪喜来登和万怡的体验报告 2022年的第一篇碎碎念
奥地利匈牙利九日游旅程DEEPFILTERNET:一种基于深度滤波的全频带音频低复杂度语音增强框架
C++ Primer Plus(第五版)第6章编程题答案 S.V Beijing Travel 16:Peking University 算法笔记之分支限界法(1) 全运会本人观赛日程(更新完毕) 吴恩达深度学习课程 DeepLearning.ai 编程作业(1-4)Part.2 2015年5月全国大学英语四、六级口语考试报名通知
标签聚合
linux leetcode 高中 Python Java python学习 生活 算法 学习 鸟哥的linux私房菜
最近评论
davidcheung 发布于 10 个月前(02月09日) The problem has been fixed. May I ask if you can s...
tk88 发布于 10 个月前(02月07日) Hmm is anyone else having problems with the pictur...
cuicui 发布于 1 年前(10月20日) :wink:
niming 发布于 1 年前(09月19日) 同级校友,能刷到太巧了
davidcheung 发布于 2 年前(08月16日) 我得找一下我之前整理的word文档看一下,如果找到了我就更新一下这篇文章。
Nolan 发布于 2 年前(07月25日) 您的笔记非常有帮助。贴图不显示了,可以更新一下吗?
davidcheung 发布于 3 年前(06月19日) 到没有看webrtc的代码。现在主要在看我们公司的代码了。。。只是偶尔看一看webrtc的东西。。。
aobai 发布于 4 年前(03月13日) gain_change_hangover_ 应该是每三个block 只能够调整一次,这样保证每帧...
匿名 发布于 5 年前(12月30日) 烫
小奥 发布于 5 年前(12月12日) webRTC里面的NS本身我记得就是在C++里面呀

COPYRIGHT © 2025 小奥的学习笔记. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang

陕ICP备19003234号-1

鲁公网安备37120202000100号