上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 155 下一页
摘要: 历时2年,完毕原来的os研究任务 下阶段玩航模: 稳定飞行 图像实时传输 图像识别 远程操控 自主飞行 载重 静音飞行 假设有兴趣,欢迎加qq群:460307430,一起疯狂 历时2年,完毕原来的os研究任务 下阶段玩航模: 稳定飞行 图像实时传输 图像识别 远程操控 自主飞行 载重 静音飞行 假设 阅读全文
posted @ 2017-06-13 08:21 yfceshi 阅读(105) 评论(0) 推荐(0) 编辑
摘要: </pre><pre name="code" class="cpp">#include<stdio.h> #include<stdlib.h> typedef struct node { int key,dist; struct node *Left,*Right; }LeftistTree; vo 阅读全文
posted @ 2017-06-12 21:13 yfceshi 阅读(136) 评论(0) 推荐(0) 编辑
摘要: public static String printBinary(double num) { if(num>=1||num<=0) return "ERROR"; StringBuilder binary=new StringBuilder(); binary.append("."); while( 阅读全文
posted @ 2017-06-12 20:31 yfceshi 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 题意: 对于一个1~n的序列。进行m次区间反转操作; 求最后反转过的区间。 n,m<=100000。 题解: splay躶题。写完维修数列之后感觉这种题都好写了。 反转啥的打个标记下传就好,记得输出时再Pushdown标记就好了; 这篇题解就是说一下单旋和双旋的简单差别; 爷爷结点就是目标的情况不讨 阅读全文
posted @ 2017-06-12 19:48 yfceshi 阅读(147) 评论(0) 推荐(0) 编辑
摘要: Linux下使用fstatfs/statfs查询系统相关信息 1. 功能 #include < sys/statfs.h > int statfs(const char *path, struct statfs *buf); int fstatfs(int fd, struct statfs *bu 阅读全文
posted @ 2017-06-12 18:21 yfceshi 阅读(1296) 评论(0) 推荐(0) 编辑
摘要: <span style="color:#6600cc;">/* D - Election Time Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Submit Status Description The c 阅读全文
posted @ 2017-06-12 16:54 yfceshi 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 前言: ArrayBlockingQueue类是一个堵塞队列。重要用于多线程操作的条件。 一,官方解释 一个建立在数组之上被BlockingQueue绑定的堵塞队列。这个队列元素顺序是先进先出。队列的头部是在队列中待的时间最长的元素。队列的尾部是再队列中待的时间最短的元素。新的元素会被插入到队列尾部 阅读全文
posted @ 2017-06-12 15:53 yfceshi 阅读(234) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2544 入门级别 floyed和dijkstra都能够 //Dijkstra #include<cstdio> #include<cstring> #define N 105 #define inf 0xfffff 阅读全文
posted @ 2017-06-12 15:53 yfceshi 阅读(131) 评论(0) 推荐(0) 编辑
摘要:  Berkeley DB(BDB)是一个高效的嵌入式数据库编程库,C语言、C++、Java、Perl、Python、Tcl以及其它非常多语言都有其相应的API。Berkeley DB能够保存随意类型的键/值对(Key/Value Pair),并且能够为一个键保存多个数据。Berkeley DB支 阅读全文
posted @ 2017-06-12 15:19 yfceshi 阅读(495) 评论(0) 推荐(0) 编辑
摘要: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_pa 阅读全文
posted @ 2017-06-12 14:18 yfceshi 阅读(288) 评论(0) 推荐(0) 编辑
上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 155 下一页