牛客网-leetcode
牛客网上的部分leetcode原题
小丸子大米花biu
这个作者很懒,什么都没留下…
展开
-
在O(n log n)的时间内使用常数级空间复杂度对链表进行排序。
题目描述在O(n log n)的时间内使用常数级空间复杂度对链表进行排序。Sort a linked list in O(n log n) time using constant space complexity./** * Definition for singly-linked list. * class ListNode { * int val; * List...原创 2020-01-31 13:44:13 · 888 阅读 · 0 评论 -
求最多能有多少个点位于同一直线上
题目描述对于给定的n个位于同一二维平面上的点,求最多能有多少个点位于同一直线上Given n points on a 2D plane, find the maximum number of points that lie on the same straight line./** * Definition for a point. * class Point { * int...原创 2020-01-31 13:40:42 · 452 阅读 · 0 评论 -
计算逆波兰式(后缀表达式)的值
题目描述计算逆波兰式(后缀表达式)的值运算符仅包含"+","-","*"和"/",被操作数可能是整数或其他表达式例如: ["2", "1", "+", "3", "*"] -> ((2 + 1) * 3) -> 9↵ ["4", "13", "5", "/", "+"] -> (4 + (13 / 5)) -> 6Evaluate the value of ...原创 2020-01-31 13:27:57 · 220 阅读 · 0 评论 -
求给定二叉树的最小深度
题目描述求给定二叉树的最小深度。最小深度是指树的根结点到最近叶子结点的最短路径上结点的数量。Given a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf...原创 2020-01-31 13:18:52 · 358 阅读 · 0 评论