码迷,mamicode.com
首页 >  
搜索关键字:file which whereis find stat locate    ( 98661个结果
dedeCMS二次开发api简单接口代码
<?php $cfg_NotPrintHead = false; header("Content-Type: text/html; charset=utf-8"); include_once (dirname(__FILE__)."/../include/common.inc.php"); erro ...
分类:Windows程序   时间:2021-06-28 18:21:28    阅读次数:0
sql server 特殊sql
select t.type,t.name 表名 from sysobjects t where t.type in ('U','v' ,'TR') and t.name like '%%';select t.type,t.name 表名,f.name 列名 from sysobjects t, sy ...
分类:数据库   时间:2021-06-28 18:13:06    阅读次数:0
机器学习sklearn(51): 特征工程(十八) 特征降维(九)降维算法PCA和SVD(四)PCA对手写数字数据集的降维
PCA对手写数字数据集的降维 还记得我们上一周在讲特征工程时,使用的手写数字的数据集吗?数据集结构为(42000, 784),用KNN跑一次半小时,得到准确率在96.6%上下,用随机森林跑一次12秒,准确率在93.8%,虽然KNN效果好,但由于数据量太大,KNN计算太缓慢,所以我们不得不选用随机森林 ...
分类:编程语言   时间:2021-06-28 18:03:47    阅读次数:0
luogu P3452 [POI2007]BIU-Offices
两种写法,主要是复杂度的证明上比较有趣 1. 并查集+BFS 对于每个点,最多只会进入队列一次,这部分的复杂度是O(n) 每个点最多会在 for (int i = find(1); i <= n; i = find(i + 1))这段话中被访问 \(edge[i].size() + 1\) 次,因为 ...
分类:其他好文   时间:2021-06-28 17:55:38    阅读次数:0
装饰器模式
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace DesignPatt ...
分类:其他好文   时间:2021-06-25 17:21:57    阅读次数:0
【游戏】基于matlab GUI抽签【含Matlab源码 598期】
一、简介 基于matlab GUI抽签 二、源代码 function varargout = example(varargin) % EXAMPLE M-file for example.fig % EXAMPLE, by itself, creates a new EXAMPLE or raise ...
分类:其他好文   时间:2021-06-25 17:17:35    阅读次数:0
springcloud-Eureka注册中心搭建
导入相关的pom依赖 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka-server</artifactId> <version>1.4.6.RELEAS ...
分类:编程语言   时间:2021-06-25 17:16:29    阅读次数:0
mysql 安装 & 基本操作 & 数据类型
windows10系统mysql5.7 安装 下载mysql-5.7.34-winx64 https://dev.mysql.com/downloads/file/?id=502363 解压mysql-5.7.34-winx64.zip 进入解压文件,创建my.ini文件 my.ini文件编写 [m ...
分类:数据库   时间:2021-06-25 17:12:30    阅读次数:0
阿里云虚拟主机部署多网站
1.假定之前已经绑定域名且部署好网站了 ,在网站根目录下 新建 .htaccess 具体步骤如下: 比如说你先在已经搭建了一个A网站www.a.com ,想再搭建一个B网站www.b.com 那么需要先在A网站的根目录下,新建一个文件夹,比如名字叫做B_file 然后再A网站的根目录下,新建一个.h ...
分类:Web程序   时间:2021-06-25 17:02:34    阅读次数:0
1046 Shortest Distance (20 分)
The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest distance between any pair of e ...
分类:其他好文   时间:2021-06-25 16:53:38    阅读次数:0
98661条   上一页 1 ... 10 11 12 13 14 ... 9867 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!