上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 255 下一页
摘要: 在使用android stdio的时候 因为导入了两个第三方的包。出现了Error:Execution failed for task ': :dexDebug'. > com.android.ide.common.process.ProcessException这种错误。 解决方法非常easy首先 阅读全文
posted @ 2018-03-30 19:40 zhchoutai 阅读(246) 评论(0) 推荐(0) 编辑
摘要: Description 给出一个N个点M条边的无向图,经过一个点的代价是进入和离开这个点的两条边的边权的较大值。求从起点1到点N的最小代价。起点的代价是离开起点的边的边权。终点的代价是进入终点的边的边权 N<=100000 M<=200000 Input Output Sample Input 4 阅读全文
posted @ 2018-03-30 18:27 zhchoutai 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 概述:Spark postgresql jdbc 数据库连接和写入操作源代码解读。具体记录了SparkSQL对数据库的操作,通过java程序。在本地开发和执行。总体为,Spark建立数据库连接,读取数据。将DataFrame数据写入还有一个数据库表中。附带完整项目源代码(完整项目源代码github) 阅读全文
posted @ 2018-03-30 16:30 zhchoutai 阅读(3457) 评论(0) 推荐(0) 编辑
摘要: Java中hashcode的理解 原文链接http://blog.csdn.net/chinayuan/article/details/3345559 怎样理解hashCode的作用: 以 java.lang.Object来理解,JVM每new一个Object,它都会将这个Object丢到一个Has 阅读全文
posted @ 2018-03-30 15:13 zhchoutai 阅读(37872) 评论(3) 推荐(2) 编辑
摘要: 一、Mat类型:矩阵类型,Matrix。 在openCV中。Mat是一个多维的密集数据数组。能够用来处理向量和矩阵、图像、直方图等等常见的多维数据。 Mat有3个重要的方法: 1、Mat mat = imread(const String* filename); 读取图像 2、imshow(cons 阅读全文
posted @ 2018-03-30 14:34 zhchoutai 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 当数组做为函数的形參的时候,该參数退化为指针,而且是无法直接求得数组的大小。 传数组给一个函数。数组类型自己主动转换为指针类型,因而传的实际是地址。 void func(int array[10]) void func(int array[]) void func(int *array) 所以以上三 阅读全文
posted @ 2018-03-30 12:51 zhchoutai 阅读(135) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> void move(char x,char y) { printf("%c->%c\n",x,y); } //将n个盘子从1中借助2移动到3 void hanoi(int n,char one,char two,char three) { if(n==1) mov 阅读全文
posted @ 2018-03-30 12:21 zhchoutai 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 代码镇顶:https://github.com/dna2github/petalJS/blob/master/upload 前些天遇到用户须要上传10GB大小以上的文件的需求,查查网上的库。都不好用。都没有一个完整的前后端的样例,要么像resumable.js仅仅有前端,后端写得无比麻烦。要么是jq 阅读全文
posted @ 2018-03-30 10:42 zhchoutai 阅读(603) 评论(0) 推荐(0) 编辑
摘要: 枚举左区间线段树维护最大值 #include<algorithm> #include<iostream> #include<cstdlib> #include<cstring> #include<cstdio> #include<vector> #include<cmath> #include<qu 阅读全文
posted @ 2018-03-30 09:28 zhchoutai 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 日期 内核版本号 架构 作者 GitHub CSDN 2016-06-14 Linux-4.6 X86 & arm gatieme LinuxDeviceDrivers Linux进程管理与调度 1 前景回想 1.1 进程调度 内存中保存了对每一个进程的唯一描写叙述, 并通过若干结构与其它进程连接起 阅读全文
posted @ 2018-03-30 09:21 zhchoutai 阅读(1069) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 255 下一页