上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: 非常简单,在结尾加上一句: Console.ReadKey(); 阅读全文
posted @ 2022-01-07 14:28 裏表異体 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 效果 app.json { "pages":[ "pages/index/index", "pages/logs/logs" ], "window":{ "backgroundTextStyle":"dark", "navigationBarBackgroundColor": "#ffd1b3", 阅读全文
posted @ 2021-09-07 21:24 裏表異体 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 安装requests pip install requests #安装beautifulSoup pip install beautifulSoup4 阅读全文
posted @ 2021-08-22 16:39 裏表異体 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 用Python爬取一个网站图片 先看看主页的规律 这是他的地址:https://pic.netbian.com/4kfengjing/ 它有200多页 第3页的地址 第4页的地址 发现规律! 第i页的地址为:https://pic.netbian.com/4kfengjing/index_i.htm 阅读全文
posted @ 2021-07-01 13:13 裏表異体 阅读(366) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u010376788/article/details/46957957 阅读全文
posted @ 2021-01-09 16:03 裏表異体 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 决策树 ID3 和 ID4.5 from math import log import operator def createDataSet(): """ 创建测试的数据集 :return: """ dataSet = [ ['青绿', '蜷缩', '浊响', '清晰', '凹陷', '硬滑', ' 阅读全文
posted @ 2021-01-07 13:05 裏表異体 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 线性回归 一元线性回归 假设对于观测对象x和y我们收集到了一批数据$x = \beginx_1,x_2,x_3,\dots,x_n\end$ ,\(y = \begin{Bmatrix}{y_1,y_2,y_3,\dots y_n}\end{Bmatrix}\) 我们希望找到一个一元线性函数(一个因 阅读全文
posted @ 2021-01-03 21:40 裏表異体 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 多说无益,直接上代码(其实就是懒的说) import random import numpy as np S = ['A','G','C','T'] def createStr(n): str = [] for i in range(30): str.append(S[random.randint( 阅读全文
posted @ 2020-12-07 15:15 裏表異体 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 递归方法 #include<iostream> using namespace std; void swap(int& a, int& b) { int t = a; a = b; b = t; } void arrange(int *a, int n, int k) { if (k > n) { 阅读全文
posted @ 2020-09-23 16:50 裏表異体 阅读(107) 评论(0) 推荐(0) 编辑
摘要: AVL树 注意!!! 本文学习参考自AVL树(一)之 图文解析 和 C语言的实现,这篇博客写的非常棒!讲解易懂,思路清晰,代码也写的非常好!大家快去看看!!(这里的代码就是参考(抄)他的,我懒= =) 为什么要有AVL树? AVL树是最先被发明的高度自平衡二叉查找树。AVL树的名字取自它的发明者G. 阅读全文
posted @ 2020-07-16 17:35 裏表異体 阅读(168) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页