240 发简信
IP属地:天津
  • [Leetcode]64. Minimum Path Sum

    Given a m x n grid filled with non-negative numbers, find a path from to...

  • Resize,w 360,h 240
    [Leetcode]226. Invert Binary Tree

    解释:就是把一棵二叉树的左子树和右子树不停交换,还是挺简单的,代码如下: 易错: 此时那棵交换后的树是这样的: 出现的问题是1,3的双亲本来是2...

  • Resize,w 360,h 240
    [Leetcode]107. Binary Tree Level Order Traversal II

    用队列实现树的广度优先搜索 题目如下: 实现代码如下: 以前一直写的深度优先,感觉这个还是蛮新鲜的,作为c++萌新,也学了一些c++中queue...

  • [Leetcode]112. Path Sum

    问题描述:Given a binary tree and a sum, determine if the tree has a root-to-...

  • Resize,w 360,h 240
    [Leetcode]110. Balanced Binary Tree

    题目:Given a binary tree, determine if it is height-balanced. For this pro...

  • [Leetcode]111. Minimum Depth of Binary Tree

    题目描述:Given a binary tree, find its minimum depth. The minimum depth is t...

  • 顺序表简单实现

    考研数据结构得用c或c++写,写java的我终于还是被拉回来开始艰难而又咸鱼的c++学习,写的可能不是很好,凑合看看吧 注: 若函数形参中用的是...

  • Resize,w 360,h 240
    2n皇后问题

    题目描述: 解决方法:递归+回溯先铺上一层皇后,再铺一层

  • 最大公约数

    循环取余法 用循环算法如下: 用递归如下: