码迷,mamicode.com
首页 >  
搜索关键字:break point    ( 16971个结果
【C++】学习汇总
【1】Virtual是C++ OO机制中很重要的一个关键字。只要是学过C++的人都知道在类Base中加了Virtual关键字的函数就是虚拟函数(例如下面例子中的函数print),于是在Base的派生类Derived中就可以通过重写虚拟函数来实现对基类虚拟函数的覆盖。当基类Base的指针point指向...
分类:编程语言   时间:2014-05-14 02:11:02    阅读次数:352
利用数据结构栈求解迷宫问题
本段程序主要利用数据结构栈的先进后出特点,实现回溯求解迷宫路径问题。 #include #include using namespace std; //坐标类 struct Point { int x; int y; }; //地图类 template struct Map { int (*p)[A]; int row;//行数 int col;//列数 }; //start起始点, ...
分类:其他好文   时间:2014-05-13 05:25:02    阅读次数:478
表驱动法
表驱动法:是一种编程模式将选择条件ifelse查表换成直接查表switch(month){case1,3,5,7,8,10,12:day=30;break;case2:day=28;break;default:day=30;break;}换成:day【mouthLen】={31283130313031,,,}
分类:其他好文   时间:2014-05-13 04:13:07    阅读次数:242
指向指针的指针
理解二级指针,关键是理解指针的存储方式和意义。 这里以指向int型指针的指针为例,梳理一下二级指针在内存分配中 的奥妙.... #include using namespace std; int main() { int a[5] = {1, 2, 3, 4, 5}; int *p = a; int **point = &p; cout << "a = "...
分类:其他好文   时间:2014-05-12 23:22:28    阅读次数:291
《深度探索c++对象模型》chapter1关于对象对象模型
在c++中,有2种class data member:static和nostatic,以及3钟class member function:static,nostatic和virtual。已知下面这个class Point声明:class Point{public: Point(float xv...
分类:编程语言   时间:2014-05-12 21:43:54    阅读次数:370
POJ 3525 二分+半平面交
Most Distant Point from the Sea Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 3812   Accepted: 1779   Special Judge Description The main land of Japan ca...
分类:其他好文   时间:2014-05-12 14:48:41    阅读次数:438
CTreeCtrl 父结点联动子结点CheckBox
实现很简单,直接上代码: 1 void CCheckBoxTreeDlg::OnNMClickTree1(NMHDR *pNMHDR, LRESULT *pResult) 2 { 3 // TODO: 在此添加控件通知处理程序代码 4 CPoint point; 5 UINT...
分类:其他好文   时间:2014-05-12 11:07:03    阅读次数:297
linux 双网关双IP设置
server:CentOS5.8 ip:172.16.8.11 Gateway:172.16.8.1ip:10.120.6.78 Gateway:10.120.6.1网卡配置:eth0 point:[root@localhost ~]# cat /etc/sysconfig/network-scri...
分类:系统相关   时间:2014-05-10 06:50:23    阅读次数:536
zoj 1648 Circuit Board
题目:意思就是判断给定的几条线段是否有相交的。 方法:模版吧,有空在来细细学习。 代码: #include #include using namespace std; struct Point { double x,y; }; struct LineSeg { Point a,b; }; double Cross(Point a, Point b, Poi...
分类:其他好文   时间:2014-05-10 03:39:07    阅读次数:326
C语言之关键字
1. C99标准规定了如下关键字:auto _Bool break case char _Complexconst continue default restrict do ...
分类:编程语言   时间:2014-05-10 02:27:27    阅读次数:422
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!