上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要: 冷备份:在数据库关闭的状态下进行 热备份:在数据库运行的状态下进行 温备份:数据库锁定表格(不可写只可读)的状态下进行的 完全备份:每次对数据进行完整的备份 差异备份:备份距上次备份之后被修改过的所有文件件 增量备份:距离上一次完全备份后增加的文件备份 完全备份:(1)数据库的全备 (2)对指定库进 阅读全文
posted @ 2024-03-26 21:55 catsahsy 阅读(24) 评论(0) 推荐(0)
摘要: 看黑马 阅读全文
posted @ 2024-03-25 22:30 catsahsy 阅读(4) 评论(0) 推荐(0)
摘要: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manif 阅读全文
posted @ 2024-03-25 22:19 catsahsy 阅读(12) 评论(0) 推荐(0)
摘要: public class InsertSort { public static void main(String[] args) { int[] array = new int[]{2, 6, 3, 8, 9, 0, 1, 7, 4}; InsertSort(array); } public sta 阅读全文
posted @ 2024-03-22 23:21 catsahsy 阅读(11) 评论(0) 推荐(0)
摘要: 交换排序的基本思想:两两比较待排序关键字,一旦发现两个记录不满足次序要求则进行交换,知道整个队列全部满足要求为止 冒泡排序 冒泡排序是一种最简单的交换排序,他通过两两比较相邻记录的关键字,如果发生逆序,则进行交换,从而使关键字小的记录如气泡一般逐渐往上“漂浮”,或者往下沉。 阅读全文
posted @ 2024-03-21 22:03 catsahsy 阅读(9) 评论(0) 推荐(0)
摘要: <head> <style type="text/css"> 选择器{ 对象的属性1:属性值1; 对象的属性2:属性值2; } </style> </head> 例如 更改段落字体 p{ font-size:14px; color:red; } 阅读全文
posted @ 2024-03-20 20:28 catsahsy 阅读(13) 评论(0) 推荐(0)
摘要: <head> <style type="text/css"> 选择器{ 对象的属性1:属性值1; 对象的属性2:属性值2; } </style> </head> 例如 更改段落字体 p{ font-size:14px; color:red; } 阅读全文
posted @ 2024-03-19 22:48 catsahsy 阅读(21) 评论(0) 推荐(0)
摘要: import requestsfrom pyquery import PyQuery as pq # 比xpath还要灵活的html解析工具 # 定义请求headers = { "Accept": "text/html,application/xhtml+xml,application/xml;q= 阅读全文
posted @ 2024-03-18 09:45 catsahsy 阅读(32) 评论(0) 推荐(0)
摘要: import requestsfrom lxml import etree text = requests.get("https://music.163.com/discover/toplist?id=3778678").text html = etree.HTML(text)id_list = h 阅读全文
posted @ 2024-03-15 20:00 catsahsy 阅读(32) 评论(0) 推荐(0)
摘要: import re regEx = "[\n”“|]" # 去除字符串中的换行符、中文冒号、|,需要去除什么字符就在里面写什么字符 str= re.sub(regEx, "","|tayyyy“") print(str) 阅读全文
posted @ 2024-03-14 20:56 catsahsy 阅读(30) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页