240 发简信
IP属地:吉林
  • Resize,w 360,h 240
    Win10快速搭建vs code c++环境

    0 写在开始   用vs code搭建c++环境主要用到两个工具,vs code和mingw-w64,之前看过一些教程给的下载链接有的被改了,有...

  • Resize,w 360,h 240
    Leetcode 279. 完全平方数 c++

    链接:https://leetcode-cn.com/problems/perfect-squares/ 解题思路:这个题用动态规划做的,时间比...

  • Resize,w 360,h 240
    Leetcode 64. 最小路径和 c++

    链接:https://leetcode-cn.com/problems/minimum-path-sum/ 主要思路:1.这个题比较简单,因为题...

  • Resize,w 360,h 240
    Leetcode 416. 分割等和子集 c++

    链接:https://leetcode-cn.com/problems/partition-equal-subset-sum/ 主要思路:从一堆...

  • Resize,w 360,h 240
    Leetcode 200. 岛屿数量 c++

    链接:https://leetcode-cn.com/problems/number-of-islands/ 主要思路:1.如果发现当前点是岛屿...

  • Resize,w 360,h 240
    Leetcode 133. 克隆图 c++

    链接:https://leetcode-cn.com/problems/clone-graph/ 关键思路:1.题目中明明确表示不会超过100个...

  • Resize,w 360,h 240
    Leetcode 130. 被围绕的区域 c++

    链接:https://leetcode-cn.com/problems/surrounded-regions/ 此题采用广度优先的思想:最外圈是...