摘要: 1.where2.list [m, n];3.print 变量4.break 设置断点 -break linenum -break funcname -break filename:linenum -break filename:funcname info break 显示断点信息 continue... 阅读全文
posted @ 2015-04-19 14:26 禅意 阅读(123) 评论(0) 推荐(0) 编辑
摘要: /* ============================================================================ Name : mysql1.c Author : suys Version : Copyright :... 阅读全文
posted @ 2015-04-18 09:12 禅意 阅读(337) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include static int value = 0; pthread_mutex_t mutex; void* func(void* ar... 阅读全文
posted @ 2015-04-11 13:51 禅意 阅读(127) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include void* func_1(void* args){ while(1){ sleep(1); printf("this is func_1!\n"); }}void* func_2(void... 阅读全文
posted @ 2015-04-11 13:34 禅意 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 以下以链表为例子,仔细体会代码模块化设计的思想以及代码规范。/**************************************************** Coperight (C) SSE-USTC, 2014-2015* FILE NAME : ... 阅读全文
posted @ 2015-04-10 23:12 禅意 阅读(536) 评论(0) 推荐(0) 编辑
摘要: //////////////////////////////////////////////////////////图的邻接矩阵的DFS和BFS////////////////////////////////////////////////////////#include #include #inc... 阅读全文
posted @ 2015-04-10 19:56 禅意 阅读(2180) 评论(0) 推荐(0) 编辑
摘要: /////////////////////////////////////////////////////////////////图的邻接表表示法以及DFS和BFS///////////////////////////////////////////////////////////////#incl... 阅读全文
posted @ 2015-04-09 22:48 禅意 阅读(2680) 评论(0) 推荐(0) 编辑
摘要: ////////////////////////////////////////////////////////////图的邻接表存储//////////////////////////////////////////////////////////#include #include using n... 阅读全文
posted @ 2015-04-09 20:53 禅意 阅读(341) 评论(0) 推荐(0) 编辑
摘要: //////////////////////////////////////////////////////////图的邻接矩阵存储////////////////////////////////////////////////////////#include #include #define Ma... 阅读全文
posted @ 2015-04-09 20:51 禅意 阅读(312) 评论(0) 推荐(0) 编辑
摘要: //MaxHeap.h#ifndef MAXHEAP_H_#define MAXHEAP_H_#define ElementType int#define MAXDATA 1000class MaxHeap{private: ElementType *elem; int size; ... 阅读全文
posted @ 2015-04-08 16:30 禅意 阅读(234) 评论(0) 推荐(0) 编辑