码迷,mamicode.com
首页 >  
搜索关键字:a. double cola    ( 12855个结果
有向面积
有向面积是矢量,它大小等于面积,但是带有方向,可以用右手定则求出方向。有向面积可以很方便的在坐标系中求出凸多边形的面积,及点与凸多边形的位置关系。 以三角形为例: 三角形的有向面积: Double area(double x0,double y0,double x1,double...
分类:其他好文   时间:2014-07-22 23:00:33    阅读次数:272
POJ - 2926 Requirements
题意:多维的曼哈顿最远距离 思路:做了1,2,3维的,其实就是枚举所有绝对值的可能的表达式 #include #include #include #include using namespace std; const int MAXN = 100005; const int M = 5; const double inf = 1e200; struct node{ double x...
分类:其他好文   时间:2014-05-01 17:31:01    阅读次数:283
hdu 1213 How Many Tables
简单并查集#include#include#include#include#include#include#include#include#include#include#include#define inf 0x0f0f0f0fusing namespace std;const double p....
分类:其他好文   时间:2014-05-01 10:15:58    阅读次数:367
C++类的详细介绍
#include "iostream" using namespace std; //class 关键字 //Circle 是类的名字 class Circle { int m_age;//什么都不加 默认为private; private: //private 修饰的成员变量和成员函数,只能在类的内部使用; double xiaosi; //私有成员属性,...
分类:编程语言   时间:2014-04-30 22:45:39    阅读次数:313
hdu1221
求矩形和圆是否相交或相切。 #include #include #define judge(x,y) x<y||fabs(x-y)<0.00000001 double dis(int x,int y,int a,int b) { return (x-a)*(x-a)+(y-b)*(y-b); } int main() { int T; scanf(...
分类:其他好文   时间:2014-04-30 22:45:38    阅读次数:365
SQL Mirroring[Hot back up with Double machine]
Background: It's fairly common for businesses to want to provide some high availability for their SQL Server databases, and one option is to have two SQL Server databases on separate machines with a SQL Server database mirrored....
分类:数据库   时间:2014-04-30 22:11:38    阅读次数:520
floor() 和 ceil()函数
在C语言的库函数中,floor函数的语法如下: #include double floor( double arg ); 功能: 函数返回参数不大于arg的最大整数。例如, x = 6.04; y = floor( x ); y的值为6.0. 与floor函数对应的是ceil函数,即上取整函数。 有趣的是,floor在英文中是地板的意思,而ceil是天花板的意思,很形象地描述了下...
分类:其他好文   时间:2014-04-29 13:46:20    阅读次数:970
UVA 617 - Nonstop Travel(数论+暴力枚举)
题目链接:617 - Nonstop Travel 题意:给定一些红绿灯,现在速度能在30-60km/h之内,求多少个速度满足一路不遇到红灯。 思路:暴力每一个速度,去判断可不可以,最后注意下输出格式即可 代码: #include #include #include const double esp = 1e-6; int n, vis[105]; struct D { do...
分类:其他好文   时间:2014-04-29 13:45:20    阅读次数:333
C++ Primer 学习笔记_48_类与数据抽象 --类的定义和声明【下】
类--类的定义和声明【下】三、关于类定义的更多内容【接上】//P374 习题12.8 class Sales_item { public: double avg_price() const; bool same_isbn(const Sales_item &rhs) const { return rhs.isbn == isbn; } Sa...
分类:编程语言   时间:2014-04-29 13:28:21    阅读次数:324
图像处理MATLAB源码
>> I=imread('nickyboom.jpg'); J=double(I); J=-J+(256-1);                 %图像反转线性变换 H=uint8(J); subplot(1,2,1),imshow(I); subplot(1,2,2),imshow(H);...
分类:其他好文   时间:2014-04-29 13:12:21    阅读次数:306
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!