码迷,mamicode.com
首页 >  
搜索关键字:low poly    ( 2316个结果
Hadoop是什么
Hadoop是一个由Apache基金会所开发的分布式系统基础架构。用户可以在不了解分布式底层细节的情况下,开发分布式程序。充分利用集群的威力进行高速运算和存储。[1] Hadoop实现了一个分布式文件系统(Hadoop Distributed File System),简称HDFS。HDFS有高容错性的特点,并且设计用来部署在低廉的(low-cost)硬件上;而且它提供高吞吐量(high thro...
分类:其他好文   时间:2015-04-19 18:00:31    阅读次数:108
Share Your Music
Share Your Music,是我最近做的一个音乐应用,在了解了一些Web Audio API的知识之后,显示闲的蛋疼的做了一个这个。就手痒的做了一个Web的音乐播放和分享应用。大概是这个样子。这次的应用专门适应于PC端,固定宽度1000px,绝对布局。是不是很low。。。虽然这次前端来说没用库...
分类:其他好文   时间:2015-04-19 17:37:52    阅读次数:134
快速排序
(java版)public class Qsort { static int Partition(int l[],int low,int high){ int prvotkey = l[low]; while(low= prvotkey) high--; l[low] = l[high...
分类:编程语言   时间:2015-04-17 22:13:31    阅读次数:128
NOJ1560---Let Slimes Grow Up(线段树)
问题描述 You know 8Mao has his own Slime Team. But he soon found that let the Slimes stand in a line and make them from low to high is a such stupid thing since the Slimes are so f[bi][bi]king stupid! As...
分类:其他好文   时间:2015-04-17 11:45:39    阅读次数:162
链表实现二分法求根
#include#include#includeusing namespace std;class poly{public: double c; int e; poly*next;};poly*input();double f(poly*head,double x);double root(poly...
分类:其他好文   时间:2015-04-16 21:32:02    阅读次数:150
Linux系统下安装 LSI StorCLI64工具查看和管理raid卡
OS环境:CentOS6.3/CentOS7.1一.可用如下命令查询服务器raid卡硬件相关信息:[root@localhost/]#dmesg|grepraid megaraid_sas0000:04:00.0:PCIINTA->GSI30(level,low)->IRQ30 megaraid_sas0000:04:00.0:settinglatencytimerto64 megaraid_sas0000:04:00.0:irq49forMSI/MS..
分类:系统相关   时间:2015-04-16 20:09:32    阅读次数:2924
直接插入排序
void insertSort(){ int a[10]={10,2,3,5,8,9,7,1,55,6}; int nVal=0; for(int i=1; i=0&&nVal=low&&nVal=high+1&&nVal<a[j] ) { a[j+1]=a[j]; ...
分类:编程语言   时间:2015-04-16 19:30:51    阅读次数:151
主席树套树状数组 动态区间第k小
先打上代码以后更新解释 1 #include 2 #include 3 #include 4 #include 5 #include 6 #define REP(i, s, n) for(int i = s; i = s; i --) 8 #define LOW for(; x; x -=...
分类:编程语言   时间:2015-04-15 00:37:55    阅读次数:393
多项式求导
#includeusing namespace std;class poly{public: int coef; int expon; poly *next;};poly*input(); /*输入函数*/poly*attach(poly*...
分类:其他好文   时间:2015-04-14 23:05:54    阅读次数:203
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!