链表 链表是以节点的方式存储 每个节点包含data域,next域,next域指向下一个节点 链表分为:带头结点、不带头节点,根据实际需求确定 客户端 LinkedList<string> list = new LinkedList<string>(); list.Add("fan"); list.A ...
分类:
编程语言 时间:
2020-07-12 00:30:11
阅读次数:
71
Description Name: Hackademic: RTB2 Date release: 6 Sep 2011 DHCP service: Enabled IP address: Automatically assign Task:get root and read the file key ...
分类:
其他好文 时间:
2020-07-10 17:09:19
阅读次数:
93
函数 函数可以提高编写代码效率、代码的重用、让程序更小、模块化 可以将一段独立功能的代码集成在一个块中、封装独立功能 # 函数定义(参数名为形式参数) def 函数名(参数名): 函数体 # 调用函数(享受封装的成功) 函数名(实际参数) 例:print函数 print(sep,end) sep(元 ...
分类:
编程语言 时间:
2020-07-09 13:47:53
阅读次数:
70
Widget.h: #ifndef WIDGET_H #define WIDGET_H #include<QWidget> #include<QMouseEvent> class Widget : public QWidget { Q_OBJECT public: Widget(QWidget *p ...
分类:
其他好文 时间:
2020-07-09 01:18:01
阅读次数:
91
mian #import <Foundation/Foundation.h> int main(int argc, const char * argv[]) { @autoreleasepool { // NSRange范围结构体 NSString* str=@"Object-C is a cool ...
分类:
其他好文 时间:
2020-07-09 01:13:34
阅读次数:
77
import cv2 import numpy as np #from PIL import Image def separate_color_red(img): hsv = cv2.cvtColor(img, cv2.COLOR_BGR2HSV) lower_hsv = np.array([0, ...
分类:
其他好文 时间:
2020-07-08 20:09:17
阅读次数:
68
进入宿主机查看容器 docker ps进入容器 docker exec -it “容器名“ bash查询时间 date -R 发现时区为0时区bash-5.0# date -RTue, 17 Sep 2019 05:51:30 +0000 1.复制相应的时区文件,替换系统时区文件;cp /usr/s ...
分类:
其他好文 时间:
2020-07-01 14:32:43
阅读次数:
67
library(package="car") data <- read.csv("C:\\users\\mike1\\desktop\\data\\RData\\hald水泥数据.csv", header=T, sep=",",fileEncoding = "utf-8", stringsAsFac ...
分类:
其他好文 时间:
2020-07-01 00:07:17
阅读次数:
74
package main import ( "fmt" "strings" "bytes" ) func main(){ s := "Hello, World!" //Count计算字符串sep在s中的非重叠个数:2 //func Count(s, sep string) int fmt.Print ...
分类:
其他好文 时间:
2020-06-30 18:54:26
阅读次数:
58
//获取当前日期 function getNowFormatDate() { var date = new Date(); var seperator1 = "-"; var seperator2 = ":"; var month = date.getMonth() + 1; var strDate ...
分类:
Web程序 时间:
2020-06-29 11:40:40
阅读次数:
83