冒泡排序 var arr = [1, 9, 4, 50, 49, 6, 3, 2]; function test(){ for (var i = 0; i < arr.length - 1; i++){ for (var j = i + 1; j < arr.length; j++){ var te ...
分类:
编程语言 时间:
2019-12-04 13:06:56
阅读次数:
79
RegressionMAT2040 Linear Algebra (2019 Fall)Project 2Project Instructions:? Read the following text and answer the questions given in and after the te ...
分类:
其他好文 时间:
2019-12-04 13:05:29
阅读次数:
121
大三了,目前基础太差了,重新学习过!代码如下,里面都有详细的解释每一行代码代表的意思~ package IODemo; import java.io.File; import java.io.FileFilter; import java.io.IOException; import java.te ...
分类:
编程语言 时间:
2019-11-30 09:26:34
阅读次数:
96
A Pattern Language for Parallel Application Programming Berna L. Massingill, Timothy G. Mattson, Beverly A. Sanders Abstract Parallel computing has fa ...
分类:
移动开发 时间:
2019-11-26 19:56:10
阅读次数:
91
IB9Y8 Asset Pricing 2019/20 Group Project AssignmentPage 1 of 9IB9Y8 Asset Pricing 2019/20 Group Project This project asks students to estimate and te ...
分类:
其他好文 时间:
2019-11-24 19:12:53
阅读次数:
80
yum软件仓库 本地:光盘 file:/// ftp: 红帽官网 ftp:// http: 网络yum源 阿里云 http:// 1.配置本地yum源 1.1挂载光盘 mount /dev/cdrom /mnt/ 1.2编辑配置文件 vi /etc/yum.repo.d/test.repo 注:te ...
分类:
其他好文 时间:
2019-11-23 22:00:53
阅读次数:
100
University of Westminster - School of Computer Science & Engineering4COSC001W: Programming Principles I - Assignment Specification (2019/20)Module lea ...
分类:
其他好文 时间:
2019-11-21 18:38:20
阅读次数:
66
在发送请求时,参数以什么样的类型发送,常见的有 : application/x-www-form-urlencoded表单提交参数,如: pageNo=0&classTypeId=3228 application/json json格式,如: 在响应的结果中,信息以什么样的类型 展示,常见也有 te ...
分类:
Web程序 时间:
2019-11-19 15:48:27
阅读次数:
106
一、网络请求 1 import requests 2 3 #get请求 4 url = 'http://127.0.0.0/api/user/stu_info' 5 data = {"stu_info":"xiaoming"} 6 result = requests.get(url,data).te ...
分类:
编程语言 时间:
2019-11-19 12:04:09
阅读次数:
66
github.com/yongxinz/te… Elasticsearch 基本概念 Index:Elasticsearch用来存储数据的逻辑区域,它类似于关系型数据库中的database 概念。一个index可以在一个或者多个shard上面,同时一个shard也可能会有多个replicas。 Do ...
分类:
编程语言 时间:
2019-11-17 12:48:17
阅读次数:
105