开始学习《Python基础教程》 按照书上的例子敲了个最简单的print函数,居然报错: >>> print "fsdfs"SyntaxError: Missing parentheses in call to 'print',上网查了一下,python 3和Python2的语法不一样,我按照的是3 ...
分类:
编程语言 时间:
2017-07-14 10:09:14
阅读次数:
138
给定一个仅包含 '('、')'、'{'、'}'、'['、']'的字符串,确定输入的字符串是否合法。 e.g. "()"、"()[]{}"、"[()]([]({}))" 是合法的,而"(]"、"([)]" 是不合法的。 使用栈stack C++实现: 对应的Java实现: C++中的stack,其中有 ...
分类:
其他好文 时间:
2017-07-04 20:17:39
阅读次数:
185
题目如图 首先明确的是,可以有(()) ([])诸如此类的表达的。 然后用栈实现算法是,较为容易的。 判断总长度,不是2的倍数,返回false。 如果第一个是)]},返回false。 如果是( [ {则压入栈中 如果是)则看栈顶是不是(,如果不是,那么返回false。其他,类似。 执行完循环,如果栈 ...
分类:
编程语言 时间:
2017-07-02 15:19:40
阅读次数:
218
https://leetcode.com/problems/valid-parentheses/#/solutions ...
分类:
其他好文 时间:
2017-07-02 00:14:23
阅读次数:
170
一、题目 1、描述 2、题意 求满足括号闭合规则的最大子串长度 二、解答 1、思路: 刚开始想到的是前面的判断这个字符串是否满足闭合规则的方法,即建一个Stack,当为'(' 时候,')' 入栈,当为 ')' 时候,判断栈顶是否为 ‘)’, 这种方法未解决 ()(() 这种情况。看到网上大神的方法, ...
分类:
其他好文 时间:
2017-06-26 18:04:47
阅读次数:
154
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. Given a string containing just ...
分类:
其他好文 时间:
2017-06-24 10:07:06
阅读次数:
171
题目链接:https://leetcode.com/problems/valid-parentheses/ Given a string containing just the characters '(', ')','{', '}', '[' and ']', determine if the i ...
分类:
其他好文 时间:
2017-06-22 10:03:06
阅读次数:
115
Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring. For "(()", the lo ...
分类:
其他好文 时间:
2017-06-18 18:08:00
阅读次数:
127
题目描述 Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid. The brackets must close in the co ...
分类:
其他好文 时间:
2017-06-06 23:42:19
阅读次数:
383
题目: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set i ...
分类:
编程语言 时间:
2017-06-04 12:53:38
阅读次数:
162