码迷,mamicode.com
首页 > 其他好文
序列化和反序列化简单使用
序列化和反序列化简单使用
分类:其他好文   时间:2015-08-10 10:35:35    阅读次数:133
化学课程_bozemanscience
官网:http://www.bozemanscience.com/chemistry/ChemistryUnit 1: IntroductionFactor-Label MethodScientific MethodSignificant DigitsUnit 2: Matter & Atomic ...
分类:其他好文   时间:2015-08-10 10:34:59    阅读次数:120
easyui中带checkbox框的tree
1 var data = [{ 2 "id": 1, 3 "checked":true, 4 "text": "系统菜单", 5 "children": [{ 6 "id...
分类:其他好文   时间:2015-08-10 10:35:16    阅读次数:134
自定义属性,资源文件attrs.xml
1.attrs.xml中写:在values文件夹下。 2.布局文件中写: 1 2 s 7 8 17 18 View Code
分类:其他好文   时间:2015-08-10 10:32:05    阅读次数:170
poj1961 KMP
求循环节。#include#include#define maxn 1000010int next[maxn];char s[maxn];void getnext(){ int j,k,len=strlen(s); j=0; k=-1; next[0]=-1; whil...
分类:其他好文   时间:2015-08-10 10:34:55    阅读次数:94
Canvas事件处理
鼠标事件 canvas.onmousedown = function(e ) {//React to the mouse down event }; canvas.addEventListener('mousedown', function(e ) { //React to the mouse do...
分类:其他好文   时间:2015-08-10 10:33:34    阅读次数:12769
汇编实现square函数
square函数主要计算一个数的平方 code: .section?.data .section?.text .global?_start fmt: ????.ascii?"%d\n\0" _start: ????pushq?$2 ????call?square ????addq?$8,?%rsp?????...
分类:其他好文   时间:2015-08-10 09:31:47    阅读次数:167
POJ 1080 Human Gene Functions(DP)
Human Gene Functions Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 18007   Accepted: 10012 Description It is well known that a human gene can be considered...
分类:其他好文   时间:2015-08-10 09:29:00    阅读次数:109
POJ 1163&& 3176 The Triangle(DP)
The Triangle Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 41169   Accepted: 24882 Description 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 (Figure...
分类:其他好文   时间:2015-08-10 09:29:03    阅读次数:101
Homestead 集成开发环境配置
Laravel的目的就是让开发这的开发体验更愉快,开发过程更加简单。在环境搭建上也是如此。 Laravel homestead是一个官方发布的vagrant封装包——一个虚拟机——提供完备的开发环境。在homestead配置完成后,不需要在本地环境中配置任何的开发工具,vagrant可以搞定一切。因为是虚拟机,不会对本地系统产生任何的破坏。同时如果出现故障,可以在几分钟内销毁并重建虚拟机。 ho...
分类:其他好文   时间:2015-08-10 09:29:21    阅读次数:151
Lotto
Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 1790    Accepted Submission(s): 871 Problem Description In a Lotto I have ever played, o...
分类:其他好文   时间:2015-08-10 09:29:11    阅读次数:133
POJ 1260 Pearls(DP)
Pearls Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 7946   Accepted: 3948 Description In Pearlania everybody is fond of pearls. One company, called The Ro...
分类:其他好文   时间:2015-08-10 09:27:38    阅读次数:112
HDU 5365 Run(暴力)
题意:给一个n和n个整数坐标问这些点能组成几个不同正三角形,正方形,正五边形,正六边形。 分析:由于坐标都是整数,使用只可能有正方形,其他都不可能,那么只要对于每四个不同的点,判断2组对边相等,两条对角线也相等,临边也相等即可。 代码: #include #include #include #include #include #pragma comment(link...
分类:其他好文   时间:2015-08-10 09:28:39    阅读次数:145
最新hosts,更新hosts,可用
?? 最新的hosts,该hosts会经常更新,亲测可用。 查一些技术文档和资料方便。这个链接(点击打开)给出的hosts通常是最新的,且有更新。记下备忘。...
分类:其他好文   时间:2015-08-10 09:26:06    阅读次数:202
hdoj-1212-Big Number【大数取余&简单题】
Big Number Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 6015 Accepted Submission(s): 4205 Problem Description As we know, Big Number is...
分类:其他好文   时间:2015-08-10 09:28:24    阅读次数:114
POJ 1836 Alignment(DP max(最长上升子序列 + 最长下降子序列))
Alignment Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 14486   Accepted: 4695 Description In the army, a platoon is composed by n soldiers. During the mor...
分类:其他好文   时间:2015-08-10 09:28:14    阅读次数:111
POJ 2533 Longest Ordered Subsequence(DP 最长上升子序列)
Longest Ordered Subsequence Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 38980   Accepted: 17119 Description A numeric sequence of ai is ordered if a1 a2 ...
分类:其他好文   时间:2015-08-10 09:25:24    阅读次数:82
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!