上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 130 下一页
摘要: You live in the universe X where all the physical laws and constants are different from ours. For example all of their objects are N-dimensional. The 阅读全文
posted @ 2017-06-10 18:27 wzzkaifa 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://poj.org/problem?id=2001 Description A prefix of a string is a substring starting at the beginning of the given string. The prefixes of "ca 阅读全文
posted @ 2017-06-10 17:19 wzzkaifa 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 使用线段树更新每段区间的奖(1,2,3),最后在统计整段区间的数和,基本线段树,果断1A啊 #include<iostream> #include<stdio.h> using namespace std; #define N 100000 struct node{ int l,r,p; }a[N* 阅读全文
posted @ 2017-06-10 16:38 wzzkaifa 阅读(103) 评论(0) 推荐(0) 编辑
摘要: --删除分区 truncate table partition declare day number; begin day := 20110901; loop execute immediate 'alter table lbidw.TB_DW_MGR_01_DAY truncate partiti 阅读全文
posted @ 2017-06-10 15:13 wzzkaifa 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 今天做爬虫时。发现结果中好多多余的空格。然后有强迫症的我当然不会放过 " xyz ".strip() # returns "xyz" " xyz ".lstrip() # returns "xyz " " xyz ".rstrip() # returns " xyz" " x y z ".repla 阅读全文
posted @ 2017-06-10 13:47 wzzkaifa 阅读(47821) 评论(0) 推荐(0) 编辑
摘要: huangjing 二叉树的的建立方式为前序 二叉树有三种遍历 前序遍历(NLR) 中序遍历(LNR) 兴许遍历(LRN) 非递归的算法明天补上 代码为: #include<iostream> #include<cstdio> #include<cstring> #include<algorithm 阅读全文
posted @ 2017-06-10 13:11 wzzkaifa 阅读(198) 评论(0) 推荐(0) 编辑
摘要: // AES 加密 public byte[] AESEncrypt(string text) { byte[] data = Encoding.Unicode.GetBytes(text); SymmetricAlgorithm aes = Rijndael.Create(); aes.Key = 阅读全文
posted @ 2017-06-10 12:41 wzzkaifa 阅读(1004) 评论(0) 推荐(0) 编辑
摘要: 转载请注明 本文出自:http://blog.csdn.net/nancle 首先说==和 首先说明一个非常特殊的值NaN, typeof(Nav)得到'number',可是NaN不等于不论什么一个值(包含它本身)。推断一个值是不是NaN仅仅能使用isNaNNaN == NaN //得到 false 阅读全文
posted @ 2017-06-10 11:53 wzzkaifa 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 近期项目中遇到载入数据的性能问题, 原因是.net4.0的虚拟化支持不够完毕,有好多bug在4.5才修复。 我们仅仅能利用大家通用的做法来延迟载入数据:每次载入固定少量的数据。当拖动究竟后。继续载入兴许同样数量的数据。思路:监听ScrollViewer的VerticalOffsetProperty, 阅读全文
posted @ 2017-06-10 11:04 wzzkaifa 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 这是一组使用HTML5 SVG过滤器制作的炫酷液态水滴融合分解动画特效。这些SVG动画特效使一些HTML元素。如菜单、分页button、APP、选择框等元素的过渡动画像几粒水滴一样融合分解。效果很的酷。 通过SVG Filters能够改动一个给定的图形,创建我们须要的结果。SVG中包括了一组能够运行 阅读全文
posted @ 2017-06-10 09:48 wzzkaifa 阅读(680) 评论(0) 推荐(0) 编辑
上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 130 下一页