14.1 持续集成概述及运行流程 14.1.1 持续集成概述 持续集成概述:持续集成(Continuous integration)持续集成是指开发者在代码的开发过程中, 可以频繁的将代码部署集成到主干,并进行自动化测试。 持续交付:持续交付指的是在持续集成的环境基础之上,将代码部署到预生产环境。 ...
分类:
其他好文 时间:
2019-06-01 20:00:29
阅读次数:
114
581. 最短无序连续子数组 581. Shortest Unsorted Continuous Subarray 题目描述 给定一个整型数组,你需要寻找一个 连续的子数组 ,如果对这个子数组进行升序排序,那么整个数组都会变为升序排序。 你找到的子数组应是 最短的 ,请输出它的长度。 LeetCod ...
分类:
编程语言 时间:
2019-05-21 14:40:17
阅读次数:
177
674. 最长连续递增序列 674. Longest Continuous Increasing Subsequence 题目描述 给定一个未经排序的整型数组,找到 最长且连续 的递增序列。 Given an unsorted array of integers, find the length o ...
分类:
其他好文 时间:
2019-05-21 13:27:10
阅读次数:
102
Given an unsorted array of integers, find the length of longest continuous increasing subsequence (subarray). Example 1: Example 2: Idea 1. Dynamic pr ...
分类:
其他好文 时间:
2019-05-09 10:46:05
阅读次数:
99
时态(Tense):“时“指动作发生的时间,”态“指动作的样子和状态。 现在进行时(The Present Continuous Tense):现在进行的动作或存在的状态,现在进行时表示动作发生的时间是“现在”,动作目前的状态是“正在进行中”。 be + V ing 过去进行时(Past conti ...
分类:
其他好文 时间:
2019-05-04 12:02:28
阅读次数:
123
一、Storm (一)什么是Storm? Storm为分布式实时计算提供了一组通用原语,可被用于“流处理”之中,实时处理消息并更新数据库。这是管理队列及工作者集群的另一种方式。 Storm也可被用于“连续计算”(continuous computation),对数据流做连续查询,在计算时就将结果以流 ...
分类:
其他好文 时间:
2019-05-01 14:59:35
阅读次数:
146
word2vec完整的解释可以参考《word2vec Parameter Learning Explained》这篇文章。 cbow模型 cbow模型的全称为Continuous Bag-of-Word Model。该模型的作用是根据给定的词$w_{input}$,预测目标词出现的概率$w_t$,对 ...
分类:
其他好文 时间:
2019-04-16 00:55:19
阅读次数:
298
Given an array which consists of non-negative integers and an integer m, you can split the array into m non-empty continuous subarrays. Write an algor ...
分类:
其他好文 时间:
2019-04-08 09:12:00
阅读次数:
122
转自:http://www.ruanyifeng.com/blog/2015/09/continuous-integration.html 互联网软件的开发和发布,已经形成了一套标准流程,最重要的组成部分就是持续集成(Continuous integration,简称CI)。 本文简要介绍持续集成的 ...
分类:
其他好文 时间:
2019-04-03 12:14:26
阅读次数:
130
Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole array will be ...
分类:
其他好文 时间:
2019-04-02 22:45:53
阅读次数:
185