
leetcode
文章平均质量分 56
Qiana_Wu
坚持不懈的编程
展开
-
leetcode: sort-colors 颜色排序
题目描述:Given an array with n objects colored red, white or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the order red, white and blue.Here, we will use...原创 2018-07-17 16:33:04 · 355 阅读 · 0 评论 -
leetcode: construct-binary-tree-from-inorder-and-postorder-traversal 使用中序和后序遍历重建二叉树
题目描述:Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.题目解析: //题目:construct-binary-tree-from-inorder-a...原创 2018-08-18 10:41:56 · 316 阅读 · 0 评论 -
leetcode : same-tree:判断是不是相同的树
题目描述:Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally identical and the nodes have the same value.题目解析:...原创 2018-08-18 09:27:20 · 328 阅读 · 0 评论 -
leetcode: binary-tree-preorder-traversal
题目描述:Given a binary tree, return the preorder traversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3 return[1,2,3].Note: Recursive solution i...原创 2018-08-15 20:35:22 · 264 阅读 · 0 评论 -
leetcode: remove-nth-node-from-end-of-list:删除倒数第n个节点
题目描述:Given a linked list, remove the n th node from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After removing the second nod...原创 2018-08-07 23:21:26 · 239 阅读 · 0 评论 -
leetcode: rotate-list:旋转链表
题目描述:Given a list, rotate the list to the right by k places, where k is non-negative.For example:Given1->2->3->4->5->NULLand k =2,return4->5->1->2->3->NULL.题目解析:...原创 2018-08-07 21:34:46 · 275 阅读 · 0 评论 -
leetcode : add-two-numbers
题目描述:You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as...原创 2018-08-07 20:26:02 · 187 阅读 · 0 评论 -
LeetCode:reorder-list:重排链表
题目描述:Given a singly linked list L: L 0→L 1→…→L n-1→L n,reorder it to: L 0→L n →L 1→L n-1→L 2→L n-2→…You must do this in-place without altering the nodes' values.For example,Given{1,2,3,4}, reo...原创 2018-08-06 10:52:27 · 297 阅读 · 0 评论 -
LeetCode:partition-list:对链表进行分区
题目描述:Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should preserve the original relative order of the nodes in ea...原创 2018-08-06 10:34:59 · 362 阅读 · 0 评论 -
leetcode: convert-sorted-list-to-binary-search-tree:将排序的链表转换成二叉搜索树
题目描述:Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.题目解析:通过快慢指针找到链表的中点,作为二叉搜素树的根节点。以中点为界,将链表分为两部分,不包含中点,分别对两部分链表递归调用原函数,最后连上根节点的左右子树...原创 2018-08-06 10:30:28 · 198 阅读 · 0 评论 -
LeetCode:triangle
题目描述:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the following triangle[ [2], [3,4],...原创 2018-08-01 16:23:02 · 227 阅读 · 0 评论 -
LeetCode:sort list
题目描述:Sort a linked list in O(n log n) time using constant space complexity.题目解析:使用O(nlogn)的算法排序数组。O(nlogn)的排序算法有快速排序,归并排序,堆排序。这里使用归并排序。归并排序的一般步骤为:(1)将待排序链表,取中点,一分为二;(2)递归地对左半部分进行归并排序;(3)...原创 2018-08-06 00:21:16 · 181 阅读 · 0 评论 -
leetcode : marge-intervals:合并区间
题目描述:Given a collection of intervals, merge all overlapping intervals. For example, Given[1,3],[2,6],[8,10],[15,18], return[1,6],[8,10],[15,18].解题思路: 题目的意思是:一个vector中存着Interval对象,Interval是一个结构体,...原创 2018-07-14 23:50:45 · 242 阅读 · 0 评论 -
Leetcode: search-for-a-range
题目描述:Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in the order of O(log n). If the target is not f...原创 2018-07-06 11:10:32 · 219 阅读 · 0 评论 -
Leetcode: search-insert-position
题目描述:Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order. You may assume no duplicates in the ...原创 2018-07-06 10:55:14 · 287 阅读 · 0 评论 -
leetcode: binary-tree-postorder-traversal:后序遍历二叉树
题目描述:Given a binary tree, return the postorder traversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1].Note: Recursive solution is tr...原创 2018-08-17 20:10:03 · 323 阅读 · 0 评论