
反转
文章平均质量分 68
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 232. Implement Queue using Stacks(用栈实现队列)
原题网址:https://leetcode.com/problems/implement-queue-using-stacks/mplement the following operations of a queue using stacks.push(x) -- Push element x to the back of queue.pop() -- Removes the原创 2016-04-05 11:53:58 · 539 阅读 · 0 评论 -
LeetCode 25. Reverse Nodes in k-Group(反转链表)
原题网址:https://leetcode.com/problems/reverse-nodes-in-k-group/Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a m原创 2016-05-20 10:35:18 · 774 阅读 · 0 评论 -
LeetCode 369. Plus One Linked List(链表加1)
原题网址:https://leetcode.com/problems/plus-one-linked-list/Given a non-negative number represented as a singly linked list of digits, plus one to the number.The digits are stored such that the most原创 2016-06-29 02:38:17 · 2270 阅读 · 0 评论 -
LeetCode 92. Reverse Linked List II(翻转链表)
原题网址:https://leetcode.com/problems/reverse-linked-list-ii/Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4,原创 2016-05-23 00:34:57 · 436 阅读 · 0 评论 -
LeetCode 24. Swap Nodes in Pairs(交换节点)
原题网址:https://leetcode.com/problems/swap-nodes-in-pairs/Given a linked list, swap every two adjacent nodes and return its head.For example,Given 1->2->3->4, you should return the list as 2-原创 2016-05-19 07:29:56 · 388 阅读 · 0 评论 -
LeetCode 7. Reverse Integer(反转整数)
原题网址:https://leetcode.com/problems/reverse-integer/Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321click to show spoilers.Have you thought原创 2016-05-19 03:54:03 · 4190 阅读 · 0 评论 -
LeetCode 234. Palindrome Linked List(对称链表)
原题网址:https://leetcode.com/submissions/detail/58253344/Given a singly linked list, determine if it is a palindrome.Follow up:Could you do it in O(n) time and O(1) space?思路:普通的思路是可以生成一个反转的原创 2016-04-06 05:36:23 · 1014 阅读 · 0 评论 -
LeetCode 226. Invert Binary Tree(反转二叉树)
原题网址:https://leetcode.com/problems/invert-binary-tree/Invert a binary tree. 4 / \ 2 7 / \ / \1 3 6 9to 4 / \ 7 2 / \ / \9 6 3 1思路:递归调用,对左右子节原创 2016-04-05 03:54:25 · 916 阅读 · 0 评论 -
LeetCode 345. Reverse Vowels of a String(翻转元音字母)
原题网址:https://leetcode.com/problems/reverse-vowels-of-a-string/Write a function that takes a string as input and reverse only the vowels of a string.Example 1:Given s = "hello", return "hol原创 2016-04-30 12:16:13 · 852 阅读 · 0 评论 -
LeetCode 206. Reverse Linked List(翻转链表)
原题网址:https://leetcode.com/problems/reverse-linked-list/Reverse a singly linked list.click to show more hints.Hint:A linked list can be reversed either iteratively or recursively. Could原创 2016-05-04 08:22:21 · 697 阅读 · 0 评论 -
LeetCode 190. Reverse Bits(翻转比特)
原题网址:https://leetcode.com/problems/reverse-bits/Reverse bits of a given 32 bits unsigned integer.For example, given input 43261596 (represented in binary as 00000010100101000001111010011100)原创 2016-05-04 02:49:15 · 1790 阅读 · 0 评论 -
LeetCode 143. Reorder List(重组链表)
原题网址:https://leetcode.com/problems/reorder-list/Given a singly linked list L: L0→L1→…→Ln-1→Ln,reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' va原创 2016-05-26 02:08:26 · 1589 阅读 · 0 评论 -
LeetCode 151. Reverse Words in a String(反转单词)
原题网址:https://leetcode.com/problems/reverse-words-in-a-string/Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".U原创 2016-05-26 01:06:09 · 576 阅读 · 0 评论 -
LeetCode 344. Reverse String(字符串翻转)
原题网址:https://leetcode.com/problems/reverse-string/Write a function that takes a string as input and returns the string reversed.Example:Given s = "hello", return "olleh".方法:循环。public c原创 2016-04-30 12:04:53 · 856 阅读 · 0 评论 -
LeetCode 186. Reverse Words in a String II(反转单词)
原题网址:https://leetcode.com/problems/reverse-words-in-a-string-ii/Given an input string, reverse the string word by word. A word is defined as a sequence of non-space characters.The input stri原创 2016-05-25 01:36:04 · 1811 阅读 · 0 评论 -
LeetCode 156. Binary Tree Upside Down(树的倒转)
原题网址:https://leetcode.com/problems/binary-tree-upside-down/Given a binary tree where all the right nodes are either leaf nodes with a sibling (a left node that shares the same parent node) or em原创 2016-05-26 00:48:19 · 901 阅读 · 0 评论