摘要: 1、HTML部分 1.1、标签 1.1.1、重要标签 1.1.2、自闭式标签 1.1.3、块元素 1.1.4、行内元素 1.1.5、特殊符号 1.1.6、target属性 1.1.7、表单form的属性 1.1.8、input标签type属性 1.1.9、type=text的常用属性 1.1.10、 阅读全文
posted @ 2020-09-05 13:16 taomin 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 1、背景 json是接口测试过程中少不了的部分,但是对于json的处理和断言,大部分是转化成dict后进行字段断言,而再次之前,其实可进行前一步操作schema https://github.com/Julian/jsonschema 阅读全文
posted @ 2020-09-04 13:43 taomin 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1、背景 因工作需要,需要系统学习mysql,之后mysql学习的总结将会在这篇博客中 2、知识积累 关于索引的知识 在mysql学习过程中,少不了关于索引的知识,索引背后的原理其实是新增了一张索引表,如果说创建一个用户表,表结构如下: create table SUser( `ID` bigint 阅读全文
posted @ 2020-09-02 22:02 taomin 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1、复杂度概念 算法复杂度分为时间复杂度和空间复杂度 时间复杂度表示为函数运行的次数,分为O(1),O(N),O(N^2),O(logN),O(2^N)大概几种 比如:a=1表示为O(1) for i in range(n): print(n) 为O(N) 2、hashmap的概念 散列表(Hash 阅读全文
posted @ 2020-08-05 15:12 taomin 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 1、左连 select a.*,b.* from a left join b on a.id=b.id 把右边的表拼接到左边,如果左边存在,但右边不存在时,右边表会展示为null 2、右边 select a.*,b.* from a right join b on a.id=b.id 与左连相反 3 阅读全文
posted @ 2020-04-15 20:26 taomin 阅读(923) 评论(0) 推荐(0) 编辑
摘要: pass 阅读全文
posted @ 2020-04-15 09:47 taomin 阅读(101) 评论(0) 推荐(0) 编辑
摘要: def quick(list,start,end): if start>=end: return low = start high = end key = list[low] while start<end: while start<end and list[end]>key: end-=1 lis 阅读全文
posted @ 2020-04-14 23:15 taomin 阅读(163) 评论(0) 推荐(0) 编辑
摘要: pass 阅读全文
posted @ 2020-04-14 20:24 taomin 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1、leetcode 50题 2、谷歌软件测试之道学习 3、jacoco 4、jemter 5、流畅的python 阅读全文
posted @ 2020-04-13 16:13 taomin 阅读(129) 评论(0) 推荐(0) 编辑
摘要: class Node: def __init__(self, elem, next_=None): self.elem = elem self.next = next_ def list2link(List): head = Node(List[0])#创建一个头节点并将list第一个值赋值给头结点 阅读全文
posted @ 2020-04-10 15:38 taomin 阅读(615) 评论(0) 推荐(0) 编辑