240 发简信
IP属地:加州
  • leetcode 19

    题目描述 给定一个单向链表,要求删除从结尾数第n个结点,并返回修改后的表头。 样例 给定数组单向链表 1->2->3->4->5 ,以及 n =...

  • 246. Strobogrammatic Number

    [LeetCode] Strobogrammatic Number 对称数 A strobogrammatic number is a numb...

  • 155. Min Stack

    题目:题目地址 题目描述请设计一个栈结构,支持 push、pop、top以及getMin操作,且每个操作的时间复杂度都是 O(1)O(1)。pu...

  • 66. Plus One

    模拟人工加法的过程。 从低位到高位,依次计算出每一位数字,过程中需要记录进位。如果最高位进位是1,则需要将整个数组后移一位,并在第0个位置写上1。

  • 20. Valid Parentheses

    使用栈数据结构: 遇到左括号,需要压栈。 遇到右括号,判断栈顶是否和当前右括号匹配;若不匹配则返回false,否则匹配弹出栈顶。 最后判断栈是否...

  • 283. Move Zeroes

    leetcode Day 4 题目:Given an array nums, write a function to move all 0's ...

  • 104. Maximum Depth of Binary Tree

    Leetcode Day 3 题目:Given a binary tree, find its maximum depth.The maximu...

  • 461. Hamming Distance

    Leetcode Day 2 题目:The Hamming distance between two integers is the numbe...