题目链接:restore-ip-addresses
import java.util.ArrayList;
import java.util.List;
/**
*
Given a string containing only digits,
restore it by returning all possible valid IP address combination...
分类:
其他好文 时间:
2015-04-04 09:14:43
阅读次数:
113
一:什么是迭代器通过某种统一的方式遍历链表或者数组中的元素的过程叫做迭代遍历,这种统一的遍历工具我们叫做迭代器。二:ArrayIterator迭代器1:Iterator接口PHP中的迭代器是通过Iterator接口定义的。包括current()、key()、next()、rewind()、valid...
分类:
其他好文 时间:
2015-04-03 19:11:52
阅读次数:
195
题目链接:valid-number
/**
*
Validate if a given string is numeric.
Some examples:
"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true
Note: It is intended for the pro...
分类:
其他好文 时间:
2015-04-03 15:28:08
阅读次数:
137
判断是不是符合数独的规则。数独的规则:每一行每一列不能有重复的数字,每一个3X3方格中不能有重复的数字,但是这个题中可以为空即都是'.'。 (要养成良好的编程习惯啊,要不一点低级错误不容易发现,浪费生命!)public class Solution { public boolean isVal...
分类:
其他好文 时间:
2015-04-03 15:09:54
阅读次数:
124
1.到万网申请免费主机 2.登录微信公众平台 安装新手开发说明,一步一步看下去 第一步:填写服务器配置,就是刚才从万网上申请来的 Token自己随便取 为了方便测试加密方式选择明文模式 第二步,验证服务器的地址的有效性 #region 1.0验证消息的真实性 - private void Valid...
分类:
微信 时间:
2015-04-03 14:52:18
阅读次数:
388
Implement analgorithm to print all valid combinations of n-pairs of parenthese.Analysis:-只要待加入的有左括号就可以加入左括号。最初可以加入的左括号为n个。-只要已加入的左括号比右括号多就可以加入右括号。最初可以...
分类:
其他好文 时间:
2015-04-03 14:46:24
阅读次数:
115
Given a string containing just the characters'('and')', find the length of the longest valid (well-formed) parentheses substring.For"(()", the longest...
分类:
其他好文 时间:
2015-04-03 11:10:45
阅读次数:
102
题目意思非常简单,判断所给字符串中的括号是否匹配,需要注意的问题:)(这样是不匹配的。 public class Solution { public boolean isValid(String s) { Stack stack = new Stack(); ...
分类:
其他好文 时间:
2015-04-02 22:07:35
阅读次数:
146