https://blog.csdn.net/u013019431/article/details/80776662 在jupyter notebook import pysparkhttps://www.douban.com/note/504421303/ 如何初始化 https://blog.cs ...
分类:
其他好文 时间:
2019-11-13 14:41:33
阅读次数:
85
Given a non-empty array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runti ...
分类:
其他好文 时间:
2019-11-13 12:58:51
阅读次数:
98
1 前备知识 均值迁移模糊是图像边缘保留滤波算法中的一种,经常用在对图像进行分水岭分割之前去噪声,可以大幅度提升分水岭分割的效果。均值迁移模糊的主要思想如下: 就是在图像进行开窗的时候,考虑像素值空间范围分布,只有符合分布的像素点才参与计算,计算得到像素均值与空间位置均值,使用新的均值位置作为窗口中 ...
分类:
其他好文 时间:
2019-11-13 11:18:58
阅读次数:
115
382. Linked List Random Node class Solution { ListNode node; Random random; /** @param head The linked list's head. Note that the head is guaranteed t ...
分类:
其他好文 时间:
2019-11-13 09:16:41
阅读次数:
71
Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Exampl ...
分类:
其他好文 时间:
2019-11-13 00:54:18
阅读次数:
88
一、为什么会想到定义@SpringCloudProfile这样的注解 首页提一下@Profile注解:它主要用与Spring Boot多环境配置中,指定某个类只在指定环境中生效,比如swagger的配置只允许开发和测试环境开发,线上需要禁止使用。 使用@Profile进行如下配置: 但是在Sprin ...
分类:
编程语言 时间:
2019-11-13 00:48:35
阅读次数:
107
Valya and Tolya are an ideal pair, but they quarrel sometimes. Recently, Valya took offense at her boyfriend because he came to her in t-shirt with le ...
分类:
其他好文 时间:
2019-11-12 22:03:49
阅读次数:
117
一、@Api 用在请求的类上,表示对类的说明 常用参数: tags="说明该类的作用,非空时将覆盖value的值" value="描述类的作用" description 对api资源的描述,在1.5版本后不再支持 basePath 基本路径可以不配置,在1.5版本后不再支持 position 如果配 ...
分类:
其他好文 时间:
2019-11-11 09:16:39
阅读次数:
75
题目: 把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。输入一个非递减排序的数组的一个旋转,输出旋转数组的最小元素。例如数组{3,4,5,1,2}为{1,2,3,4,5}的一个旋转,该数组的最小值为1。NOTE:给出的所有元素都大于0,若数组大小为0,请返回0。 分析: 这道题和L ...
分类:
编程语言 时间:
2019-11-11 00:48:03
阅读次数:
82
给自己的git的note 生成ssh + 默认生成的在家目录下的.ssh目录下 将生成的ssh的pub版本粘贴到github上 创建自己的工作分支 add and commit 推送到github + 代表的是github这个远程的ubuntu分支 Result ...
分类:
系统相关 时间:
2019-11-10 19:02:42
阅读次数:
87