240 发简信
IP属地:河南
  • Leetcode 168. Excel Sheet Column Title

    Given a positive integer, return its corresponding column title as appea...

  • Leetcode 162. Find Peak Element

    A peak element is an element that is greater than its neighbors.Given an...

  • Leetcode 167. Two Sum II - Input array is sorted

    Given an array of integers that is already sorted in ascending order, fi...

  • Leetcode 154. Find Minimum in Rotated Sorted Array II

    Follow up for "Find Minimum in Rotated Sorted Array":What if duplicates ...

  • Leetcode 153. Find Minimum in Rotated Sorted Array

    Suppose an array sorted in ascending order is rotated at some pivot unkn...

  • Leetcode 155. Min Stack

    Design a stack that supports push, pop, top, and retrieving the minimum ...

  • Leetcode 147. Insertion Sort List

    Sort a linked list using insertion sort. 分析 使用插入排序,排序一个链表。先列出首节点,然后依次对比节...

  • Leetcode 142. Linked List Cycle II

    Given a linked list, return the node where the cycle begins. If there is...

  • Leetcode 141. Linked List Cycle

    Given a linked list, determine if it has a cycle in it. Follow up:Can yo...