码迷,mamicode.com
首页 >  
搜索关键字:rac one node    ( 66256个结果
压力测试
服务器压力测试。。。。node环境下的多机器人跑...
分类:其他好文   时间:2014-05-27 03:17:51    阅读次数:169
湖南省第九届大学生程序设计竞赛
Interesting Calculator CSU 过了 TOJ超时了 先记一下 #include #include #include using namespace std; int a[100]; bool b[100010]; int c[100010]; int d[100010]; int x, y; int cas = 1; struct node { int x, t,...
分类:其他好文   时间:2014-05-22 12:42:02    阅读次数:249
2014华为实习上级笔试题-- 统计字符串中出现的单词
#include //#include using namespace std;     struct node {       char word[10];     int num; }; node obj[100];   void my_word(char input[], char output[]) {    int sum=0,flag=0;...
分类:其他好文   时间:2014-05-22 12:41:25    阅读次数:233
假定有20个 有序 数组,每个数组有500个数字,数字类型32位uint数值,现在需要取出这10000个数字中最大的500个,怎么做?
//3、假定有20个  有序   数组,每个数组有500个数字,数字类型32位uint数值,现在需要取出这10000个数字中最大的500个,怎么做? #include using namespace std; struct node { int data; int next; }; node obj[20]; void sift(int k,int m,int ...
分类:其他好文   时间:2014-05-22 10:54:48    阅读次数:292
OpenWrt下交叉编译Node.js(HG255D)
编译可在路由下运行的node.js...
分类:Web程序   时间:2014-05-22 06:38:07    阅读次数:399
笔试算法题(13):反转链表 & 左旋转字符串
出题:反转链表(递归和非递归解法);分析:有递归跟非递归实现,注意对原始链表头节点的处理,因为其他节点都指向下一个节点,其需要指向NULL;解题: 1 struct Node { 2 int v; 3 Node *next; 4 }; 5 Node* NonRecur...
分类:其他好文   时间:2014-05-22 05:20:04    阅读次数:310
4.在二元树中找出和为某一值的所有路径
Find paths whose node values equal to N in binary tree.
分类:其他好文   时间:2014-05-22 05:13:14    阅读次数:280
Linus Torvalds 指针
《对话LinusTorvalds:大多黑客甚至连指针都未理解》http://www.csdn.net/article/2013-01-10/2813559-two-star-programming“不懂指针”的开发者代码示例: 1 typedef struct node 2 { 3 ...
分类:其他好文   时间:2014-05-22 04:40:17    阅读次数:245
Matlab的标记分水岭分割算法
1 综述Separating touching objects in an image is one of the more difficult image processing operations. The watershed transform is often applied to this...
分类:其他好文   时间:2014-05-22 04:27:23    阅读次数:497
复数运算
#include #include using namespace std; struct node   { int shi; int xu; int data; }; int main() {     int shinum=0;     int xunum=0;     int n;     cin>>n;     node*num=ne...
分类:其他好文   时间:2014-05-20 15:28:05    阅读次数:256
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!