码迷,mamicode.com
首页 >  
搜索关键字:floating point    ( 7266个结果
【ThinkingInC++】13、输出移位运算符的操作
头文件 /** * 功能:输出移位运算符的操作 * 时间:2014年8月12日20:01:32 * 作者:cutter_point */ #ifndef PRINTBINARY_H_INCLUDED #define PRINTBINARY_H_INCLUDED #include using namespace std; void printBinary(const unsigned cha...
分类:编程语言   时间:2014-08-12 22:15:04    阅读次数:271
opencv对图像进行边缘及角点检测
opencv对图像进行边缘及角点检测 先看结果: 代码: // ConsoleApplication1_812.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "opencv2/opencv.hpp" class Imagedetector{ ...
分类:其他好文   时间:2014-08-12 22:05:44    阅读次数:298
form1弹窗form2的时候,固定form2的显示位置
1、 frmWireSize.StartPosition = FormStartPosition.Manual; frmWireSize.Location = new Point(this.Location.X+260, this.Location.Y+230);直接利用form位置,固定form2...
分类:其他好文   时间:2014-08-12 18:47:34    阅读次数:167
【Linux】鸟哥的Linux私房菜基础学习篇整理(九)
1. quotacheck [-avugfM] [/mount_point]:扫描文件系统并创建Quota配置文件。参数:-a:扫描所有在/etc/mtab内,含有quota支持的文件系统,加上此参数后,不必写/mount_point;-u:针对用户扫描文件与目录的使用情况,会新建aquota.us...
分类:系统相关   时间:2014-08-12 18:15:04    阅读次数:309
Copy List with Random Pointer
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:其他好文   时间:2014-08-12 16:49:54    阅读次数:205
hdu 3832 Earth Hour
StatusEach street light can be viewed as a point in a plane,which casts flash in a circular area with certain radius.What's more,if two illuminated ci...
分类:其他好文   时间:2014-08-12 02:58:43    阅读次数:289
使用结构(C# 编程指南)
struct类型适于表示Point、Rectangle和Color等轻量对象。尽管使用自动实现的属性将一个点表示为类同样方便,但在某些情况下使用结构更加有效。例如,如果声明一个 1000 个Point对象组成的数组,为了引用每个对象,则需分配更多内存;这种情况下,使用结构可以节约资源。因为 .NET...
分类:其他好文   时间:2014-08-11 23:57:43    阅读次数:530
CPoint::Offset
CPoint::Offset将值添加到CPoint的x和y成员。void Offset( int xOffset, int yOffset ) throw( );void Offset( POINT point ) throw( );void Offset( SIZE size ) ...
分类:其他好文   时间:2014-08-11 23:52:43    阅读次数:304
leetcode -- Copy List with Random Pointer
你以为那是你的极限,也许只是别人的起点[问题描述]A linked list is given such that each node contains an additional random pointer which could point to any node in the list or...
分类:其他好文   时间:2014-08-11 21:15:12    阅读次数:182
使用结构(C# 编程指南)
struct类型适于表示Point、Rectangle和Color等轻量对象。尽管使用自动实现的属性将一个点表示为类同样方便,但在某些情况下使用结构更加有效。例如,如果声明一个 1000 个Point对象组成的数组,为了引用每个对象,则需分配更多内存;这种情况下,使用结构可以节约资源。因为 .NET...
分类:其他好文   时间:2014-08-11 21:06:22    阅读次数:204
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!