本文为个人学习笔记。昨天学习了表,写了个简单的单链表。今天看了下栈和队。 说白了:栈就是一个只能在头部插入和删除的表,遵循后进先出的原则;而队与栈的区别就是先进先出,从头部插入,底部删除。附代码 1 #include 2 using namespace std; 3 4 typedef str...
分类:
其他好文 时间:
2014-12-05 10:51:18
阅读次数:
212
个人学习笔记递归是指函数调用自己本身。想知道什么是递归,首先你得知道什么是递归。下面是一个显示当n为不同值时运行时间的小程序#include #include using namespace std;clock_t start = clock(); int f(long int num){ if(....
分类:
其他好文 时间:
2014-12-04 17:40:36
阅读次数:
165
本文为个人学习笔记。简单的单链表实现。 实现过程中到的问题: ①:定义指针要赋值,或者new一个新的空间。 ②:delete 不能随便用。。。先来两张常见基本指针操作截图,再上代码头文件: 1 #include 2 using namespace std; 3 4 struct Node ...
分类:
其他好文 时间:
2014-12-04 17:26:01
阅读次数:
191
高效effective C++ 55条款之个人学习笔记一...
分类:
编程语言 时间:
2014-12-04 12:17:49
阅读次数:
129
declare cursor s is select version from city_server t; s_ city_server.version%type;begin open s; fetch s into s_; if s_>2 then DBMS_OUTPUT.put_line(s_); end if; close s;end;...
分类:
数据库 时间:
2014-09-02 10:35:24
阅读次数:
200