#include #include #include #include using namespace std;char a[1010],b[1010];int ta[1010],tb[1010];int main(){ int l2,l1,l; while(scanf("%s%s",a...
分类:
其他好文 时间:
2014-06-28 17:39:49
阅读次数:
189
2. 字节对齐的基本规则首先,每种类型的变量的默认对齐长度都是自己的变量长度,比如:char占一个字节,那么对齐长度就是一个字节,int占四个字节,对齐长度就是四个字节,double占八个字节,对齐长度就是8。int的对齐长度为4的实际意义是,int变量必须存储在四的倍数的地址上。 那么对于stru...
分类:
编程语言 时间:
2014-06-28 17:02:49
阅读次数:
265
1 #include 2 #include 3 using namespace std; 4 5 const int MAX=105; 6 7 bool vis[MAX][MAX]; 8 char maze[MAX][MAX]; 9 int n,m;10 int dir[8][2]={0,...
分类:
其他好文 时间:
2014-06-21 00:14:01
阅读次数:
275
#include #define NUMBER 6#define F_PATH "D:\\C_C++\\ec13-3\\hw.dat"typedef struct { char name[20]; int height; float weight;} student;void swap(studen...
分类:
编程语言 时间:
2014-06-21 00:08:26
阅读次数:
321
#include "aes.h"#include "modes.h"#include "e_os2.h"#include "aes_locl.h"#include "opensslconf.h"AES_KEY aes;//aes cbc模式加解密用到的向量unsigned char iv[AES_B...
分类:
移动开发 时间:
2014-06-20 22:20:17
阅读次数:
506
题目:实现ComplexLinNode* Clone(ComplexLinNode*pHead),复制一个复杂链表。分析:必须先pnext后才能进行m_AnyNodestruct ComplexLinNode{ char m_data; ComplexLinNode* m_NextNod...
分类:
其他好文 时间:
2014-06-20 20:01:33
阅读次数:
256
以下代码摘抄CSDN论坛:源文连接在:http://topic.csdn.net/u/20110620/10/1e0e91f0-1440-45db-aa29-6ce618fec2da.html本人目的只在于收藏;C方法: 1 void del_sp(char *src) // 删除C风格字符串...
分类:
编程语言 时间:
2014-06-20 16:23:36
阅读次数:
261
转自:http://blog.csdn.net/chenzujie/article/details/7011639先来看两段小程序:1)、#include #include void main(void){char *str1 = "just have fun";char *str2 = "happ...
分类:
编程语言 时间:
2014-06-20 15:12:51
阅读次数:
254
1 char szDirName[] = "文件路径"; 2 CreateDirectory(szDirName, NULL) ; 3 //这样就可以了CreateDirectory功能:This function creates a new directory. If the underlyin....
分类:
编程语言 时间:
2014-06-20 15:04:20
阅读次数:
275
A(Phone Number)1.暴力 #include #include #include #include #include using namespace std;int cmp(const void *a,const void *b){ return strcmp((char *)a...
分类:
其他好文 时间:
2014-06-20 14:41:04
阅读次数:
139