- 博客(11)
- 收藏
- 关注
转载 数据库范式——通俗易懂【转】
转载地址:http://blog.sina.com.cn/s/blog_46d817650100yj2i.html 数据库范式是数据库设计中必不可少的知识,没有对范式的理解,就无法设计出高效率、优雅的数据库。甚至设计出错误的数据库。而想要理解并掌握范式却并不是那么容易。教科书中一般以关系代数的方法来解释数据库范式。这样做虽然能够十分准确的表达数据库范式,但比较抽象,不太直观,不便于理解
2013-08-15 11:55:59 660
转载 C++ 中string.find() 函数的用法总结[转]
转载地址:http://blog.csdn.net/yushuai007008/article/details/7051385 #include #include using namespace std; void main(){[cpp] view plaincopyprint? ////find函数返回类型 size_type st
2013-08-14 10:20:34 1121
转载 从字符串中删除指定子串或指定元素
一)从字符串中删除指定子串转载地址:http://hi.baidu.com/fangm/item/85b8db57b926ed948d12ed44#include void delsub(char *str, char *sub){ char *psrc = str, *pdest = str, *psub, *p; if((str == NULL) || (s
2013-08-12 17:23:13 2997
原创 队列(插入、删除、求长、打印)
#includeusing namespace std;typedef struct student{ int data; student *next;}node;typedef struct linkQueue{ node *first; node *rear;}queue;queue* insert_queue(queue* HQ,
2013-08-09 15:18:23 583
原创 双向链表(创建、求长、打印、删除、插入)
#includeusing namespace std;typedef struct student{ int data; student *pre; student *next;}dnode;dnode* creat(){ dnode *head, *p, *s; head = new dnode; p = head; int cycl
2013-08-09 14:15:01 618
原创 fatal error LNK1281: 无法生成 SAFESEH 映像。
错误:avutil.lib(dnabbs00132.o) : error LNK2026: 模块对于 SAFESEH 映像是不安全的。7>avutil.lib(dnabbs00179.o) : error LNK2026: 模块对于 SAFESEH 映像是不安全的。7>swscale.lib(djkbbs00009.o) : error LNK2026: 模块对于 SAFESEH 映像
2013-07-19 17:35:02 8849 1
原创 vs2012release下f5和ctrl+f5结果不一致
属性设置修改(尝试):项目属性->常规->MFC的使用(改为在静态库中使用 MFC)项目属性->c/c++ -> 优化 -> 优化(改为已禁用 (/Od)) 其他可能:代码细节出问题。
2013-07-17 10:54:20 959
原创 无法找到“.exe”的调剂信息,或者调剂信息不匹配。未使用调剂信息生成二进制文件。
解决方法:项目->属性->链接器->调试->生成调试信息(改为“是 (/DEBUG)”)。
2013-07-17 10:17:01 639
原创 批处理bat执行exe
exe同一目录下建立txt,内容如下:@echo offstart /wait TAppDecoder.exe -b D:\1080p_300.hm10 -o D:\output.yuv%0%扩展名改为bat。ok了。
2013-06-29 10:23:47 2420
转载 pathon教程
原文地址:http://www.cnblogs.com/taowen/articles/11239.aspxPython完全新手教程作者:taowen, billriceLesson 1 准备好学习Python的环境下载的地址是:www.python.org为了大家的方便,我在校内作了copy:http://10.1.204.2/tool/compiler&ID
2013-04-09 16:30:16 2566
原创 线性表的创建、插入、删除和定位
#includeusing namespace std;#define LIST_INIT_SIZE 100#define LIST_INCREATMENT 10const int OK=1;const int ERROR=0;typedef struct { char *elem; int ListSize; int length;}SqL
2013-04-03 16:22:03 890
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人