自己之前的不见了。。这题是双向广搜即可过。。 1 // Colour Hash (色彩缤纷游戏) 2 // PC/UVa IDs: 110807/704, Popularity: B, Success rate: average Level: 3 3 // Verdict: Accepted ...
分类:
其他好文 时间:
2014-06-28 20:42:53
阅读次数:
194
ANGULAR js POST 数据的时候,默认是发送JSON数据到服务端的。var params={defId:"1234"};$http.post(url,params).success(function(data, status, headers, config){ ...
分类:
Web程序 时间:
2014-06-28 13:06:08
阅读次数:
248
Ajax请求,请求之后,我们需要得到返回值,或一个,或多个,然后根据返回值进行下一步的逻辑判断,那么返回值问题上,如果我们只是单一的请求后,返回一个值,那么我们可以直接接收,然后判断处理,比如:success: function (data) { if(data == 什么什么) { ...
分类:
其他好文 时间:
2014-06-27 11:04:16
阅读次数:
184
javascript代码var msg={ count:0, show:function(value,time,width){ //type:定义显示样式,三种选择:success,notice,error;,不选则默认为success; //style:仅限...
分类:
移动开发 时间:
2014-06-26 17:44:36
阅读次数:
158
private String mResult = null;
private String mProvinceName; //省份
private String mChCityName; //城市
private int GET_CITY_SUCCESS = 1;
private int GET_CITY_FAILURE = 2;
//...
分类:
其他好文 时间:
2014-06-26 13:38:07
阅读次数:
267
a little riak book 的无聊总结
#!/bin/bash
# Riak HTTP interface stays true to their intent: 1xx Informational, 2xx Success,
# 3xx Further Action, 4xx Client Error, 5xx Server Error
### put
PORT=10...
分类:
其他好文 时间:
2014-06-25 08:22:11
阅读次数:
178
在使用$.ajax做异步调用的时候,如果success却得不到值
$.ajax({
type:"GET",
url:tourl,
cache:false,
data:"{}",
success:function(data){
alert(data);
}
});
后台这样写的不到值
PrintWr...
分类:
其他好文 时间:
2014-06-22 18:15:50
阅读次数:
224
BUY LOW, BUY LOWER
Time Limit: 1000MS
Memory Limit: 30000K
Total Submissions: 8311
Accepted: 2883
Description
The advice to "buy low" is half the formula to success i...
分类:
其他好文 时间:
2014-06-21 20:49:18
阅读次数:
304
Ping pingSender = new Ping();PingReply reply = pingSender.Send("127.0.0.1",120);//第一个参数为ip地址,第二个参数为ping的时间if(reply.Status == IPStatus.Success){ //pin....
分类:
其他好文 时间:
2014-06-20 18:13:34
阅读次数:
358
关于$httpfunction PhoneListCtrl($scope, $http) { $http.get('phones/phones.json').success(function(data) { $scope.phones = data; }); $scope.orderPr...
分类:
其他好文 时间:
2014-06-18 10:49:35
阅读次数:
188