#include#include "LJSummary.h"#includeint main(void){ printf("-----\n"); if(DS_Init("",1)) { printf("success-----\n"); }else { printf("failed-----\n.....
分类:
编程语言 时间:
2014-08-25 16:36:04
阅读次数:
196
public string ExportExcel( DataSet ds,string saveFileName) { try { if (ds == null) ...
分类:
数据库 时间:
2014-08-25 16:28:44
阅读次数:
279
目前的情况,tfs安装在/usr/local/tfs/在conf目录下共有6个配置文件(若安装后没有的,请从源码中conf目录下拷贝): ns.conf、ads.conf、ds.conf、rc.conf、meta.conf和rs.conf其中ns.conf用于配置nameserver,ds.conf...
分类:
其他好文 时间:
2014-08-23 15:11:10
阅读次数:
771
1, LinkedListcomposed of one and one Node: [data][next].[head] ->[data][next] ->[data][next] ->[data][next] -> [null].Empty linkedList: head == null.V...
分类:
其他好文 时间:
2014-08-21 22:46:14
阅读次数:
229
1,Selection SortSteps:from 0~n-1, select the minimum element[comparing n-1 times], swap it with the A[0].from 1~n-1,select the minimum element[compari...
分类:
其他好文 时间:
2014-08-21 22:39:14
阅读次数:
268
;实验11;把小写字母换成大写字母assume cs:code , ds:datadata segment db "Beginner's All-purpose Symbolic Instruction Code.",0 data endscode segmentstart: ...
分类:
其他好文 时间:
2014-08-21 18:59:14
阅读次数:
224
;实验10;1.显示字符串;表示要用到前面的,8,3数据好麻烦,但是最后还是用了,;不知道push,pop这么多寄存器干嘛,可能是因为题目要求;要保存子程序中要用到的寄存器吧~assume cs:code,ds:datadata segment db 'Welcome to masm!...
分类:
其他好文 时间:
2014-08-21 18:55:04
阅读次数:
237
vulnerability 漏洞 exploit 破解 Proof Of Concept(POC) fuzzer 模糊测试工具 内存管理: .text 只读 .bss 未初始化数据 .data静态初始化数据 汇编语言: 段寄存器 16位的 段寄存器CS,DS,SS一般用作段基址寄存器 EIP 下一条...
分类:
其他好文 时间:
2014-08-20 22:32:12
阅读次数:
200
Query query =new Query(); SysTableLookup lookup; QueryBuil dDataSource ds; TableId table=tableNum(InventTrans); FieldId field=f...
分类:
其他好文 时间:
2014-08-20 15:55:12
阅读次数:
132
#include using namespace std;typedef struct Node{ Node *next; int data;}Node, *List;typedef struct DNode{ DNode *prior; DNode *next; in...
分类:
其他好文 时间:
2014-08-20 01:16:55
阅读次数:
346