
对称
文章平均质量分 80
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 247. Strobogrammatic Number II
原题网址:https://leetcode.com/problems/strobogrammatic-number-ii/A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).Find all strobogrammati原创 2016-04-07 06:34:57 · 1030 阅读 · 0 评论 -
LeetCode 5. Longest Palindromic Substring(最长回文子串)
原题网址:https://leetcode.com/problems/longest-palindromic-substring/Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there e原创 2016-05-19 03:25:31 · 512 阅读 · 0 评论 -
LeetCode 9. Palindrome Number(回文数字)
原题网址:https://leetcode.com/problems/palindrome-number/Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers原创 2016-05-19 04:37:11 · 533 阅读 · 0 评论 -
LeetCode 214. Shortest Palindrome(最短回文)
原题网址:https://leetcode.com/problems/shortest-palindrome/Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. Find and return the shortest palindrom原创 2016-05-06 02:42:12 · 1273 阅读 · 0 评论 -
LeetCode 87. Scramble String(字符串扰乱)
原题网址:https://leetcode.com/problems/scramble-string/Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.Below is one possible原创 2016-05-23 00:34:32 · 1713 阅读 · 0 评论 -
LeetCode 101. Symmetric Tree(对称的树)
原题网址:https://leetcode.com/problems/symmetric-tree/Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric:原创 2016-05-23 03:22:34 · 760 阅读 · 0 评论 -
LeetCode 336. Palindrome Pairs(回文对)
原题网址:https://leetcode.com/problems/palindrome-pairs/Given a list of unique words. Find all pairs of distinct indices (i, j) in the given list, so that the concatenation of the two words, i.e.原创 2016-04-30 05:34:08 · 2730 阅读 · 3 评论 -
LeetCode 132. Palindrome Partitioning II(回文切分)
原题网址:https://leetcode.com/problems/palindrome-partitioning-ii/Given a string s, partition s such that every substring of the partition is a palindrome.Return the minimum cuts needed for a pa原创 2016-05-27 00:22:56 · 794 阅读 · 0 评论 -
LeetCode 356. Line Reflection(线反射)
原题网址:https://leetcode.com/problems/line-reflection/Given n points on a 2D plane, find if there is such a line parallel to y-axis that reflect the given set of points.Example 1:Given po原创 2016-06-16 02:43:49 · 2146 阅读 · 0 评论 -
LeetCode 248. Strobogrammatic Number III
原题网址:https://leetcode.com/problems/strobogrammatic-number-iii/A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).Write a function to co原创 2016-04-07 08:04:04 · 1038 阅读 · 0 评论 -
LeetCode 246. Strobogrammatic Number
原题网址:https://leetcode.com/problems/strobogrammatic-number/A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).Write a function to determ原创 2016-04-07 06:08:22 · 1108 阅读 · 0 评论 -
LeetCode 116. Populating Next Right Pointers in Each Node(右邻)
原题网址:https://leetcode.com/problems/populating-next-right-pointers-in-each-node/Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkN原创 2016-05-24 00:19:38 · 361 阅读 · 0 评论 -
LeetCode 266. Palindrome Permutation(对称排列)
原题网址:https://leetcode.com/problems/palindrome-permutation/Given a string, determine if a permutation of the string could form a palindrome.For example,"code" -> False, "aab" -> True, "ca原创 2016-04-11 00:02:33 · 911 阅读 · 0 评论 -
LeetCode 267. Palindrome Permutation II(对称排列)
原题网址:https://leetcode.com/problems/palindrome-permutation-ii/Given a string s, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permut原创 2016-04-11 01:17:09 · 876 阅读 · 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 131. Palindrome Partitioning(回文分区)
原题网址:https://leetcode.com/problems/palindrome-partitioning/Given a string s, partition s such that every substring of the partition is a palindrome.Return all possible palindrome partitionin原创 2016-05-27 00:25:24 · 676 阅读 · 0 评论 -
LeetCode 125. Valid Palindrome(校验对称)
原题网址:https://leetcode.com/problems/valid-palindrome/Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan,原创 2016-05-27 00:27:03 · 471 阅读 · 0 评论 -
LeetCode 319. Bulb Switcher(灯泡)
原题网址:https://leetcode.com/problems/bulb-switcher/There are n bulbs that are initially off. You first turn on all the bulbs. Then, you turn off every second bulb. On the third round, you toggle e原创 2016-04-24 01:14:06 · 452 阅读 · 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 评论 -
422. Valid Word Square
原题网址:https://leetcode.com/problems/valid-word-square/Given a sequence of words, check whether it forms a valid word square.A sequence of words forms a valid word square if the kth row and co原创 2016-10-27 02:09:40 · 421 阅读 · 0 评论