前言: 上篇介绍了knn的实现过程,这次我们使用库里自带的数据集来进行knn的实现。 正文: 各类参数如下: precision recall f1 score support 0 1.00 1.00 1.00 20 1 1.00 0.83 0.91 12 2 0.80 1.00 0.89 8 av ...
分类:
其他好文 时间:
2020-04-09 10:58:17
阅读次数:
126
KMP算法学习 KMP中用到的函数详解 1. prefix_table() 2. move_prefix_table() 3. kmp_search() ...
分类:
编程语言 时间:
2020-04-08 22:46:51
阅读次数:
76
原题点这里 bfs可以实现。这里注意的是,机器人从00出发,我们只要向右,向下走就可以了 public static int movingCount(int m, int n, int k) { int[] dx=new int[] {-1,1,0,0}; int[] dy = new int[]{ ...
分类:
其他好文 时间:
2020-04-08 21:00:42
阅读次数:
77
No.36 今日概要 协程 gevent模块 asyncio模块 内容回顾 1.锁 互斥锁 一把锁不能在一个线程中连续 开销小 递归锁 一把锁可以在一个线程中连续 多次, 多少次就 多少次。 开销大 死锁现象 在线程中陷入阻塞并且永远无法结束阻塞的情况 形成原因 多把锁 + 交替使用 互斥锁在一个线 ...
分类:
其他好文 时间:
2020-04-07 22:14:25
阅读次数:
67
Eight Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 41040 Accepted: 16901 Special Judge Description The 15-puzzle has been around for ove ...
分类:
其他好文 时间:
2020-04-07 20:40:18
阅读次数:
86
实现双向通信 import socket server = socket.socket(socket.AF_INET,socket.SOCK_STREAM) server.bind(('0.0.0.0',8002)) server.listen() print('server 已经启动,欢迎连接') ...
分类:
编程语言 时间:
2020-04-07 20:04:27
阅读次数:
73
def move(n,a,b,c): if n==1: print(a,'-->',c) else: move(n-1,a,c,b) move(1,a,b,c) move(n-1,b,a,c) n=input() move(int(n),'A','B','C') ...
分类:
其他好文 时间:
2020-04-07 20:00:13
阅读次数:
44
1.HTTP状态码的英文为HTTP Status Code。 当浏览者访问一个网页时,浏览者的浏览器会向网页所在服务器发出请求。当浏览器接收并显示网页前,此网页所在的服务器会返回一个包含HTTP状态码的信息头(server header)用以响应浏览器的请求。 2.最常见的状态码: 200 - 请求 ...
分类:
Web程序 时间:
2020-04-07 15:33:26
阅读次数:
168
ylbtech-ServiceStack.Caching.IRemoveByPattern.cs 1.返回顶部 1、 #region 程序集 ServiceStack.Interfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=02c12 ...
分类:
其他好文 时间:
2020-04-07 14:16:29
阅读次数:
64
一、要想使用yum先要指定yum源 /etc/yum.com /etc/yum.repos.d/*repo 一、yum的使用 yum [option] command 包名 option -y: command install :安装 reinstall:重新安装 check-update:检测可升 ...
分类:
其他好文 时间:
2020-04-07 13:04:12
阅读次数:
72