码迷,mamicode.com
首页 >  
搜索关键字:low poly    ( 2316个结果
兔子-判断点在多边形内
private boolean IsPointInPolygon(List poly, LatLng pt) { int i, j; boolean c = false; for (i = 0, j = poly.size() - 1; i < poly.size(); j = i++) { if ((((poly.get(i).latitude <= pt.latitude) ...
分类:其他好文   时间:2015-03-03 13:42:50    阅读次数:120
Git-Flow
OverviewGit-Flow is a high-level command set wrapping low-level Git commands to support the "successful branching model" (see http://nvie.com/posts/a-...
分类:其他好文   时间:2015-03-01 14:26:26    阅读次数:198
uestc 方老师炸弹
转自http://www.cnblogs.com/whatbeg/p/3765625.htmlTarjan算法。1.若u为根,且度大于1,则为割点2.若u不为根,如果low[v]>=dfn[u],则u为割点(出现重边时可能导致等号,要判重边)3.若low[v]>dfn[u],则边(u,v)为桥(封死...
分类:其他好文   时间:2015-03-01 00:15:23    阅读次数:222
【基础练习】【栈】【映射】codevs3543 括号匹配题解
本来这是一道水题,结果因为我有些大意,弄了一个小时···引以为戒。 这道题比较特殊的一点是四种括号如果存在嵌套必须按照一定的顺序嵌套。 放代码 //codevs3543 括号匹配 #include #include #include #include using namespace std; map low; stack s; int n; bool ok=true; char a[256...
分类:其他好文   时间:2015-02-28 18:44:31    阅读次数:143
最大子序列-algorithms_3th
1 #include 2 using namespace std; 3 4 void FIND_MAX_CROSSING_SUBARRAY(int * const A,const int &low,const int &mid,const int &high,int &max_left,int...
分类:其他好文   时间:2015-02-28 16:20:45    阅读次数:122
LLVM 3.6 发布,编译器架构
LLVM 3.6 发布,此版本现已提供在:http://llvm.org/releases/。此版本是 LLVM 社区辛苦开发六个月的结果,包括大量 bug 修复,优化改进,Clang 支持更多被提议的  C++1z 功能,更好的原生 Windows 兼容性,本地对象文件中嵌入 LLVM IR,绑定 Go 等等,更多内容请看发行说明 [LLVM, Clang]。 LLVM 是 Low L...
分类:其他好文   时间:2015-02-28 14:38:43    阅读次数:119
智能电源管理技术--原理简介
一、专业术语          1. LDO(Low Dropout Regulator)              低压差线性稳压器              优点:稳定性好,负载响应快,输出纹波小               缺点:效率低,输入输出的电压差不能太大          2. DC-DC(Direct Current to Direct Current)    ...
分类:其他好文   时间:2015-02-28 11:28:09    阅读次数:302
Bluetooth Low Energy——蓝牙低功耗
Android4.3(API级别18)引入内置平台支持BLE的central角色,同时提供API和app应用程序用来发现设备,查询服务,和读/写characteristics。与传统蓝牙(ClassicBluetooth)不同,蓝牙低功耗(BLE)的目的是提供更显著的低功耗。这使得Android应用...
分类:其他好文   时间:2015-02-27 22:48:11    阅读次数:302
Bluetooth Low Energy 介绍
1.简介 BLE(Bluetooth Low Energy,低功耗蓝牙)是对传统蓝牙BR/EDR技术的补充。尽管BLE和传统蓝牙都称之为蓝牙标准,且共享射频,但是,BLE是一个完全不一样的技术。BLE不具备和传统蓝牙BR/EDR的兼容性。它是专为小数据率、离散传输的应用而设计的。通信距离上也有改变....
分类:其他好文   时间:2015-02-27 21:30:13    阅读次数:267
Uva 796 求桥
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=737 /*** Uva 796 求桥 题目要求:输出题目中所有的桥,按其所连接的点从小到大的顺序输出 解题思路:tarjan算法,所有树枝边都是桥(dfn[u]<low[v]),利用vector存储一下就可...
分类:其他好文   时间:2015-02-27 18:24:57    阅读次数:122
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!