码迷,mamicode.com
首页 >  
搜索关键字:low poly    ( 2316个结果
【php学习笔记】ticks篇
1. 什么是ticks 我们来看一下手册上面对ticks的解释: A tick is an event that occurs for every N low-level statements executed by the parser within the declare block. The value for N is specified using ticks=N withi...
分类:Web程序   时间:2014-07-13 13:55:59    阅读次数:269
PatentTips - Fast awake from low power mode
BACKGROUNDElectronic devices, such as electronic book readers ("eBook reader devices"), cellular telephones, portable media players, desktop computers...
分类:其他好文   时间:2014-07-13 11:50:01    阅读次数:271
hdu 2489 Minimal Ratio Tree 枚举+最小生成树
点的总数很小,直接枚举就好。#include #include #define N 20#define inf 1000000int mk[N],n,k,ans[N];double low[N],val[N];double map[N][N],MIN;double prim(){ int i,...
分类:其他好文   时间:2014-07-12 14:33:11    阅读次数:174
蓝牙4.0核心文档阅读笔记
一、蓝牙技术介绍 蓝牙无线通讯包括两种模式:基础模式(BR, Basic Rate)和低功耗模式(LE, Low Energy)。 蓝牙系统包括一个Host和多个Controllers,Host包括在HCI(Host Controller Interface)与应用程序之间,Controll...
分类:其他好文   时间:2014-07-11 11:14:11    阅读次数:210
找割顶的模板
用邻接矩阵写的。自己慢慢理解吧#include #include using namespace std;#define CC(c) memset(c, 0, sizeof(c))const int maxn=5000;int iscut[maxn], g[maxn][maxn], low[maxn...
分类:其他好文   时间:2014-07-11 08:45:04    阅读次数:206
This Bag Felt Really Lightweight
Universal filter bag is made of several layers, such as polypropylene, which provides useful filtering at high rates of fluid flow in both low and hig...
分类:其他好文   时间:2014-07-10 14:37:32    阅读次数:162
low memory killer配置的思考
OOM_ADJ对于低内存的时候,我们总是想尽量杀掉background的app,尽量保留persist service(比如输入法),让前台app能够流畅的运行。1,background app的adj尽量设高一些,但是max和mini之前,尽量还是要保留一些差距,这样让系统可以逐步去kill进程,...
分类:其他好文   时间:2014-07-09 20:41:28    阅读次数:234
hdu1269 Tarjan强连通分量 模板(转)
#include#include#includeusing namespace std;const int maxn=10010;vectorg[maxn];int Bcnt;int Top;int Index;int low[maxn],dfn[maxn];int belong[maxn],sta...
分类:其他好文   时间:2014-07-09 14:01:38    阅读次数:163
【剑指offer】Q38:数字在数组中出现的次数
与折半查找是同一个模式,不同的是,在这里不在查找某个确定的值,而是查找确定值所在的上下边界。 def getBounder(data, k, start, end, low_bound = False): if end < start : return -1 while start > 1 if data[ mid ] ...
分类:其他好文   时间:2014-07-06 12:18:00    阅读次数:311
冒泡排序
//冒泡是相邻的两个数比较 void bubble_sort_low(int unsorted[], int count) //低级 {     for (int i = 0; i1; i++) { //比较的趟数         printf("-----------------\n");         for (int j=0; j1-i; j++) {          ...
分类:其他好文   时间:2014-07-06 00:35:49    阅读次数:291
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!