敏捷的几点概念: a) Iteration 迭代开发 Iteratio Planing Meeting 需要团队参加的会议 b) Story Card/ Story Wall / Feature List 将特性分为 Story Card,每个Story最多一周就需要完成 Pr...
分类:
其他好文 时间:
2014-07-05 11:15:08
阅读次数:
240
建立一个有向图的邻接表,首先要构思好它的邻接表里面包含哪些结构数据,然后根据哪些数据来建立相应的结构体。但也要注意数据的输入。#include #include #define MAX_SIZE 10typedef struct ArcNode //弧节点结构体{ ...
分类:
其他好文 时间:
2014-07-05 11:14:30
阅读次数:
177
var oForm = document.getElementById("form1");oForm.onsubmit = function(){ alert("你要提交啊");}相关知识点禁止非法字符输入 知识点:阻止冒泡表单验证 知识点:事件 + 正则ajax提交表单
分类:
其他好文 时间:
2014-07-04 00:19:20
阅读次数:
359
C++类所占内存大小计算转载时请注明出处和作者联系方式文章出处:http://blog.csdn.net/chenchong08作者联系方式:vision_chen@yeah.net说明:笔者的操作系统是32位的。class A {};sizeof( A ) = ?sizeof( A ) = 1明明...
分类:
编程语言 时间:
2014-07-04 00:14:20
阅读次数:
355
最近阅读leveldb源码,作为一个保证可靠性的kv数据库其数据与磁盘的交互可谓是极其关键,其中涉及到了不少内存和磁盘同步的操作和策略。为了加深理解,从网上整理了linux池畔同步IO相关的函数,这里做一个罗列和对比。大部分为copy,仅为记录,请各位看官勿喷。 传统的UNIX实现在内核中设有缓冲区...
分类:
系统相关 时间:
2014-07-04 00:08:09
阅读次数:
414
1>WinMain.obj : error LNK2019: unresolved external symbol __imp__DispatchMessageW@4 referenced in function _WinMain@162>WinMain.obj : error LNK2019: u...
分类:
其他好文 时间:
2014-07-04 00:06:07
阅读次数:
287
方法Application.AddMessageFilternamespace System.Windows.Forms{ // 摘要: // 定义消息筛选器接口。 public interface IMessageFilter { // 摘要: ...
分类:
其他好文 时间:
2014-07-04 00:05:06
阅读次数:
254
各种wa后,各种TLE。注意若AC非法,则ACT等一定非法。而且尽量少MOD。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 #define MAXN 105 8 #define...
分类:
其他好文 时间:
2014-07-03 23:59:54
阅读次数:
442
Given a linked list, reverse the nodes of a linked listkat a time and return its modified list.If the number of nodes is not a multiple ofkthen left-o...
分类:
其他好文 时间:
2014-07-03 23:51:47
阅读次数:
408
Microsoft在StrSafe.h定义了新的安全字符串函数为了防止缓冲区溢出,在将一个可写缓冲区作为参数传递时,必须传递它的大小,大小可以有_countof获得,_countof获取字符数, sizeof获取字节数for example: int a[10]; // _countof(a) =....