自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

原创 持续集成基础一

一、为什么会产生持续集成与持续交付 互联网行业形势所迫导致敏捷的诞生;网络让新功能秒级速度瞬间到达客户;时间紧,任务重;软件时代的放大招模式->互联网时代的小步快跑模式;不持续,想快跑很难;现状使然,水到渠成。 二、瀑布模型vs敏捷模型 瀑布模型:设计->开发->测试->发布->交付->发现一堆bug; 敏捷模式:微型的瀑布模型 进行迭代; 三、持续集成、持续交付带来的优点 持续集成可以帮助研发和测试团队快速发现错误,每完成一个功能,就将更新内容集成到对应分支

2021-02-19 17:16:44 889

原创 Shell基础

一、变量定义 1、=左右不要有空格 2、echo用于在屏幕中打印 3、变量前带$符号 4、打印未定义过的变量,echo $ddd 打印结果是空 5、有歧义情况下,引用变量严谨的写法用{} 如:a="hello";echo $a_1输出结果是空, echo${a}_1 打印结果为hello_1 预定义变量:linux上已经定义好的变量 echo $PWD 输出当前目录 echo $USER 当前用户的用户名 echo $HOME可以输出用户的家目录 echo $PATH 环境变量 数..

2021-01-01 21:12:27 435

翻译 自动化测试面试常问问题总结

一.cook和session区别 答: 1、cookie数据存放在客户的浏览器上,session数据存放在服务器上; 2、cookie不是很安全,别人可以分析存放在本地的cookie并进行cookie欺骗;考虑到安全应当使用session 3、session会在一定时间内保存在服务器上,当访问量增加时,会比较占用服务器的性能;考虑到减轻服务器性能方面,应当使用cookie 4、单个coo...

2020-04-19 14:03:22 3186

原创 程序架构发展笔记

程序架构发展学习CS:Client/server 架构   客户端/服务端架构任务合理的分配到客户端和服务端。客户安卓客户端才可进行管理好处:安全级别较高 内网研发一般用CS架构 会降低系统通讯开销。BS: Browser/Server 浏览器/服务器架构用户界面完全通过www浏览器实现的 广域网的基础上...

2018-04-12 09:30:36 102

翻译 Merge Sorted Array

Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold addit

2017-06-04 13:20:26 143

翻译 Pascal's Triangle II

Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra space? Subscribe to see

2017-04-16 20:12:23 135 1

翻译 Pascal's Triangle(java版)

Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5, Return [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1] ] 帕斯卡三角 找规律 1、第k层有k个元素 2、每层第一

2017-04-16 14:25:56 224

翻译 Remove Duplicates from Sorted Array II(java版)

Follow up for "Remove Duplicates": What if duplicates are allowed at most twice? For example, Given sorted array nums = [1,1,1,2,2,3], Your function should return length = 5, with the first five e

2017-04-16 13:37:48 130

翻译 Remove Duplicates from Sorted Array (java版)

Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space for another array, you must do this in place with

2017-04-06 22:40:31 227 1

翻译 Remove Element (java版)

Given an array and a value, remove all instances of that value in place and return the new length. Do not allocate extra space for another array, you must do this in place with constant memory. The

2017-04-06 21:39:20 588

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除