E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
mycode
Spark编程基础(Scala版)——RDD编程
1、RDD编程基础1.1RDD创建Spark采用textFile()方法来从文件系统中加载数据创建RDDvallines=sc.textFile("file:///usr/local/spark/
mycode
kaiker
·
2021-10-04 15:55
JAVA 笔记 ClassLoader.getResourceAsStream() 与 Class.getResourceAsStream()的区别
例如你写了一个MyTest类在包com.test.
mycode
下,那么MyTest.class.getResourceAsStream("name")会在com.test.
mycode
包下查找相应的资源
·
2021-07-29 11:47
Spark 编程基础
比如,从本地文件加载数据集,或者从HDFS文件系统从文件系统中加载数据创建RDD从本地加载:scala>vallines=sc.textFile("file:///usr/local/spark/
mycode
博弈史密斯
·
2021-06-13 14:58
Leetcode - Compare Version Numbers
Mycode
:publicclassSolution{publicintcompareVersion(Stringversion1,Stringversion2){intvBegin1=0;intvBegin2
Richardo92
·
2021-06-10 18:12
Leetcode - Flatten Nested List Iterator
Mycode
:/***//Thisistheinterfacethatallowsforcreatingnestedlists.
Richardo92
·
2021-05-19 18:26
Leetcode - Find the Duplicate Number
Mycode
:publicclassSolution{publicintfindDuplicate(int[]nums){if(nums==null||nums.length==0)return-1;intbegin
Richardo92
·
2021-05-19 02:11
Leetcode - Smallest Rectangle Enclosing Black Pixels
Mycode
:publicclassSolution{introw=0;intcol=0;publicintminArea(char[][]image,intx,inty){if(image==null
Richardo92
·
2021-05-18 11:43
Leetcode - Fraction to Recurring Decimal
Mycode
:importjava.util.HashMap;publicclassSolution{publicStringfractionToDecimal(intnumerator,intdenominator
Richardo92
·
2021-05-16 20:34
Leetcode - Longest Increasing Subsequence
Mycode
:publicclassSolution{publicintlengthOfLIS(int[]nums){if(nums==null||nums.length==0){return0;}intn
Richardo92
·
2021-05-16 15:23
Leetcode - Remove Element
Mycode
:publicclassSolution{publicintremoveElement(int[]nums,intval){if(nums==null||nums.length==0)return0
Richardo92
·
2021-05-16 05:27
Leetcode - Self Crossing
Mycode
:publicclassSolution{publicbooleanisSelfCrossing(int[]x){if(x==null||x.length=x[i-2]&&x[i-3]>=x
Richardo92
·
2021-05-15 03:59
Leetcode - Nth Digit
Mycode
:publicclassSolution{publicintfindNthDigit(intn){intstart=1;intlen=1;intcount=9;while(n>len*count
Richardo92
·
2021-05-14 09:08
iOS Mac下SVN环境的配置方法
//联系人:石虎QQ:1224614774昵称:嗡嘛呢叭咪哄友情提示:特别轻松的配置svn一、创建代码仓库:1.打开终端,输入创建一个仓库的指令,如:svnadmincreate/Users/svn/
mycode
石虎132
·
2021-05-14 06:50
CodeBlocks不能断点调试的问题
H:\code\
mycode
可以H:\code\我的code不可以
gogoforit
·
2021-05-11 20:36
Leetcode - Decode String
Mycode
:publicclassSolution{publicStringdecodeString(Strings){if(s==null||s.length()==0){returns;}Stackcount
Richardo92
·
2021-05-08 08:19
Leetcode - Decode Ways
Mycode
:publicclassSolution{publicintnumDecodings(Strings){if(s==null||s.length()==0)return0;if(s.charAt
Richardo92
·
2021-05-07 22:06
Leetcode - Range Sum Query 2D - Mutable
Mycode
:publicclassNumMatrix{int[][]matrix;int[][]BIT;publicNumMatrix(int[][]matrix){if(matrix==null||
Richardo92
·
2021-05-07 02:19
Leetcode - House Robber III
Mycode
:/***Definitionforabinarytreenode.
Richardo92
·
2021-05-06 21:11
canvas 模拟 验证码封装
:/***功能:登陆验证码生成器++————————*时间:2018.7.2*auth:liangqiang*/(function($,window,document){varpluginName="
myCode
原型设计
·
2021-05-06 20:18
SVN 命令行代码
svn命令初始化代码:svnimport/Users/apple/Documents/eclipse_workspace/weibosvn://localhost/
mycode
/weibo--username
sttech
·
2021-05-06 19:22
Leetcode - Implement Stack using Queues
Mycode
:importjava.util.ArrayList;importjava.util.LinkedList;importjava.util.Queue;classMyStack{privateQueueq
Richardo92
·
2021-05-06 02:00
mac svn配置
blog.csdn.net/q199109106q/article/details/86552041.服务器创建svn服务器文件夹在终端输入sudosvnadmincreate/users/zhangwei/svn/
mycode
abs1004
·
2021-05-05 00:51
如何将idea代码提交到远程仓库
提交代码三.用命令符提交代码一.将代码提交到远程仓库步骤:前提:安装后git软件并已集成到idea中1.先在码云创建一个新的仓库,如:group01-xiongyanjun2.在本地新建一个代码文件夹如
Mycode
Rayyter
·
2021-05-04 14:34
git
sublime
text
github
windows
Leetcode - The Skyline Problem
Mycode
:importjava.util.ArrayList;importjava.util.Collections;importjava.util.Comparator;importjava.util.List
Richardo92
·
2021-05-01 15:38
Leetcode - Shortest Word Distance
Mycode
:publicclassSolution{publicintshortestDistance(String[]words,Stringword1,Stringword2){inti1=-1;
Richardo92
·
2021-04-29 04:59
Leetcode - Wiggle Subsequence
Mycode
:publicclassSolution{publicintwiggleMaxLength(int[]nums){if(nums==null||nums.length==0){return0
Richardo92
·
2021-04-27 23:28
Leetcode - Closest Binary Search Tree Value II
Mycode
:/***Definitionforabinarytreenode.
Richardo92
·
2021-04-25 16:58
Leetcode - Isomorphic Strings
Mycode
:importjava.util.HashMap;publicclassSolution{publicbooleanisIsomorphic(Strings,Stringt){if(s==null
Richardo92
·
2021-04-25 13:53
Leetcode - Max Sum of Rectangle No Larger Than K
Mycode
:importjava.util.TreeSet;publicclassSolution{publicintmaxSumSubmatrix(int[][]matrix,intk){if(matrix
Richardo92
·
2021-04-25 09:32
Leetcode - Search for a Range
Mycode
:publicclassSolution{publicint[]searchRange(int[]nums,inttarget){if(nums==null||nums.length==0)
Richardo92
·
2021-04-22 13:15
react中使用锚点
http://www.
mycode
.net.cn/language/javascript/2204.html1.marked+highlight.js高亮效果没出来,谁有例子https://cnodejs.org
Cyuu
·
2021-04-19 06:25
python办公笔记
))路径连接importosprint(os.path.join('pythonTest','test1'))列出某个文件夹下所有文件和文件夹importosprint(os.listdir('D:/
mycode
wscfan
·
2021-04-06 10:43
Java学习笔记(1)
教程地址:【尚学堂】Java300集1.830分钟完成桌球小游戏项目开发步骤:创建项目并拷贝图片:在项目名
mycode
上单击右键,在菜单中依次选择new—Directory,创建一个名称是images的文件夹
我不会算法
·
2021-03-09 19:20
java
用python生成二维码图片有二个库就够了
/
mycode
.png'q.png(path,scale=s)#scale
sam_5921
·
2021-01-28 10:59
python
Leetcode - Search for a Range
Mycode
:publicclassSolution{publicint[]searchRange(int[]nums,inttarget){if(nums==null||nums.length==0)
Richardo92
·
2020-10-09 17:31
从零开始,搭建一个简单的购物平台(十八)前端商城部分
前端商城部分:https://blog.csdn.net/time_____/article/details/108893925项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-10-08 11:17
Node.js
Vue
React
vue.js
node.js
从零开始,搭建一个简单的购物平台(十七)前端商城部分
前端商城部分:https://blog.csdn.net/time_____/article/details/108769229项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-10-08 11:05
Node.js
Vue
React
vue.js
node.js
从零开始,搭建一个简单的购物平台(十六)前端商城部分
前端商城部分:https://blog.csdn.net/time_____/article/details/108680599项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-10-08 11:55
Node.js
Vue
React
vue
node.js
从零开始,搭建一个简单的购物平台(十五)前端商城部分
前端商城部分:https://blog.csdn.net/time_____/article/details/108545330项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-10-08 11:39
Node.js
Vue
React
vue
node.js
SQL之-建库、建表、建约束、关系、部分T-sql语句
fromsys.sysdatabaseswherename='wf')beginusemasterdropdatabasewfendgocreatedatabasewfon(name=N'wf',filename=N'E:\
MyCode
chengya5679
·
2020-09-17 15:50
数据库
PySpark学习
1、RDD创建:(1)从文件系统中加载数据创建RDDlines=sc.textFile("file:///usr/local/spark/
mycode
/rdd/word.txt")(2)从HDFS中读取并加载数据
baoguaalalei1234
·
2020-09-15 04:39
机器学习
Mybatis报错:Type interface com.
mycode
.dao.UserMapper is not known to the MapperRegistry.
问题描述:MapperRegistry不知道com.
mycode
.dao.UserMapper这个接口。
Thinking in Coder
·
2020-09-14 20:32
#
MyBatis
mybatis
项目同步两个git仓库,如同时传到gitee和github
接下来演示下如何进行操作:首先创立两个仓库#假定创建好的两个仓库地址分别为:https://gitee.com/cigoos/
mycode
.githttps://github.com/cigoos/
mycode
.git
cicibi6696
·
2020-09-14 17:24
小程序 setData 与 showActionSheet 获取当前菜单的值显示在view
varlist=this.data.mycodevarobj=this//下接在success后用this.setData会报错wx.showActionSheet({itemList:this.data.
mycode
qq_24072339
·
2020-09-12 13:40
Ural_1019. Line Painting(线段树)
*///
MyCode
:#include#include#include#include#include#include#include#in
weixin_34034261
·
2020-09-12 05:55
Django 1.9.7 新版本的安装和启动流程
检查:从cmd输入python进行shell,importdjangoprintdjango.VERSION2、启动1)、创建项目在cmd命令行中,首先进入要创建项目的路径:cdC:\Python27\
mycode
chuangyanlin9445
·
2020-09-12 02:27
JS案例:拖拽音量调节效果
用原生js做了一个拖拽调节音量效果是这样的:(拖动时音量随两个圆形交集面积增大而增大)源码:https://gitee.com/DieHunter/
myCode
/tree/master/musichtml
DieHunter1024
·
2020-09-11 10:45
JavaScript
Eclipse中写Spark代码
/spark-submit/home/hadoop/spark/
mycode
/MydirstJob.jar(4)也可以直接在Eclips
千寻千梦
·
2020-09-11 06:15
java
hdu 1251 统计难题(字典树)
mycode
#include#include#includeusingnamespacestd;constintsigma_size=26;charstr[30];str
HelloWorld10086
·
2020-09-10 23:20
Trie树
Mac 使用 SVN
homebrew,需先安装homebrew,安装方法请参照:《MAC安装homebrew》二、创建仓库我这边是放在了文稿目录下:svnadmincreate/Users/[用户名]/Documents/SVN/
myCode
时光已翩然轻擦
·
2020-09-09 17:17
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他