码迷,mamicode.com
首页 >  
搜索关键字:floating point    ( 7266个结果
hdu 1242
#include#include#include#includeusing namespace std;struct point{ int x,y,step;}p;string map[211];int used[211][211];int f[4][2] = {{1,0},{0,1}...
分类:其他好文   时间:2014-08-08 20:49:36    阅读次数:228
凸包模板
struct point{ double x,y,angel;} p[N],stack[N];int top,n;double dis(point a,point b)//求距离{ return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));...
分类:其他好文   时间:2014-08-08 17:38:46    阅读次数:248
【原创】实用API拾遗_持续更新
1.int android.widget.AbsListView.pointToPosition(int x, int y):将坐标映射成list位置序号!! 2014.08.08Maps a point to a position in the list.Parameters:x X in loc...
分类:Windows程序   时间:2014-08-08 17:28:56    阅读次数:244
C++Primer 学习笔记之指针和引用
1、引用概念 引用引入了对象的一个同义词。定义引用的表示方法与定义指针相似,只是用&带起了*。 例如:Point pt1(10,10); Point &pt2 = pt1;//定义pt2为pt1的引用。通过这样的定义,pt1和pt2表示同意对象,需要特别强调的是引用并不是产生对象的副本,仅仅是对象的同义词。因此,当下面的语句执行后: pt1.ofset(2,2); pt1和pt2都具有了...
分类:编程语言   时间:2014-08-08 16:10:46    阅读次数:211
appdelegate文件中可能会用到的方法
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ // Override point for customization aft....
分类:移动开发   时间:2014-08-08 11:55:36    阅读次数:306
【ThinkingInC++】3、文件的拷贝
/** * 功能:文件的拷贝 * 时间:2014年8月8日07:40:21 * 作者:cutter_point */ #include #include #include #include using namespace std; int main() { ifstream fin("test1.jpg", ios::binary); ofstream fout("fuzhi...
分类:编程语言   时间:2014-08-08 09:43:36    阅读次数:263
MemSQL Start[c]UP 2.0 - Round 1(无聊练手B题)
http://codeforces.com/contest/452/problem/BB. 4-point polylinetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputs...
分类:数据库   时间:2014-08-08 09:34:46    阅读次数:281
【ThinkingInC++】2、输入输出流
/** *功能:输入输出流 *时间:2014年8月8日07:37:35 *作者:cutter_point */ #include using namespace std; int main() { cout<<"a number in decimal:"<<dec<<15<<endl; //十进制输出 cout<<"in octal:"<<oct<<15<<endl; ...
分类:编程语言   时间:2014-08-08 08:30:05    阅读次数:230
数据结构。顺序表
#include #include #define LIST_INIT_SIZE 100#define LIST_INCREMENT 10typedef struct Point //element type{ int x; int y;}Point;typedef Point ElemType;t...
分类:其他好文   时间:2014-08-08 01:48:05    阅读次数:292
【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 null. Return a deep copy of the list. 思路:第一遍正常复制链表,同时用哈希表保存链表中原始节点和新...
分类:其他好文   时间:2014-08-07 23:22:45    阅读次数:280
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!