码迷,mamicode.com
首页 >  
搜索关键字:floating point    ( 7266个结果
该分手的八大征兆
该分手的八大征兆Relationships are important – to each other, to our families, to our friends, to the people we care about. There comes a point in romantic rel...
分类:其他好文   时间:2014-06-26 23:29:21    阅读次数:355
自己第一个控制台的游戏——贪吃蛇
一直想自己写个游戏玩玩,好像很厉害的样子,终于今天下定决心写了个最经典的休闲的小游戏——贪吃蛇,当然也有借鉴别人的程序,但是整个代码都是和别人不一样的,直接上代码吧: #include #include #include #include using namespace std; #define ROW 22 #define COL 22 struct Point { char ch...
分类:其他好文   时间:2014-06-26 13:24:30    阅读次数:196
opencv-边缘检测
// ConsoleApplication3_6_23.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include #include using namespace std; using namespace cv; Mat src,dst,gray; int pro_typ...
分类:其他好文   时间:2014-06-26 06:46:25    阅读次数:315
limestonelimestone crushing plant
For a period before the recent nationwide gold industry shutdown, Duration was Zimbabwe’s second largest gold producer. Up until that point, it had en...
分类:其他好文   时间:2014-06-25 23:20:27    阅读次数:274
Max Points on a Line (Python)
【问题】 Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. 【思路】 对每一个点,分别计算这个点和其他所有点构成的斜率,具有相同斜率最多的点所构成的直线,就是具有最多点的直线。 【代码】 class Point: def __in...
分类:编程语言   时间:2014-06-25 19:34:29    阅读次数:246
C语言常量与指针
C语言功能强大而丰富,还表现在const与指针的结合使用上,对不同的问题,它提供不同的保护,特别有用的是指向常量的指针本文地址:http://www.cnblogs.com/archimedes/p/c-const-point.html,转载请注明源地址。指向常量的指针可以将指针指向常量,这就意味着...
分类:编程语言   时间:2014-06-25 14:43:22    阅读次数:189
POJ 1410 Intersection(线段相交&&判断点在矩形内&&坑爹)
Intersection 大意:给你一条线段,给你一个矩形,问是否相交。     相交:线段完全在矩形内部算相交;线段与矩形任意一条边不规则相交算相交。 思路:知道具体的相交规则之后题其实是不难的,但是还有个坑点就是题目里明明说给的是矩形左上角跟右下角的点,但实际上不是,需要重新判断一下...真坑。 struct Point { double x, y;...
分类:其他好文   时间:2014-06-24 23:49:48    阅读次数:446
Effective C++:条款28:避免返回 handles 指向对象内部成员
(一) 有时候为了让一个对象尽量小,可以把数据放在另外一个辅助的struct中,然后再让一个类去指向它。看下面的代码: class Point { public: Point(int x, int y); void setX(int newVal); void setY(int newVal); }; struct RectData { Point ulhc; Point lrhc...
分类:编程语言   时间:2014-06-24 22:17:30    阅读次数:240
POJ 1269 Intersecting Lines(线段相交,水题)
Intersecting Lines 大意:给你两条直线的坐标,判断两条直线是否共线、平行、相交,若相交,求出交点。 思路:线段相交判断、求交点的水题,没什么好说的。 struct Point{ double x, y; } ; struct Line{ Point a, b; } A, B; double xmult(Point p1, Point...
分类:其他好文   时间:2014-06-24 21:16:40    阅读次数:155
Container With Most Water
题目 Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (...
分类:其他好文   时间:2014-06-24 16:00:49    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!