编程语言
功能截图: 部分源码,没有main主函数: #include <stdio.h>#include <stdlib.h>typedef struct List{ int data; struct List *next;}list,*p_list; void creat_list(list **p){ ...
分类:编程语言 时间:2020-01-19 19:40:27 收藏:0 阅读:98
package rjcs; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.List; import org.apache.commons.io.FileUtils; import org. ...
分类:编程语言 时间:2020-01-19 19:40:08 收藏:0 阅读:79
通过jmeter测试Java性能jmeter 对java与scala等代码或客户端的性能测试,不能直接发起http请求,需要实例化对象发送请求实现性能测试。 jmeter提供的Java Request取样器可以控制实现JavaSamplerClient接口的类,输入参数并获取响应,利用多线程进行性能 ...
分类:编程语言 时间:2020-01-19 19:35:57 收藏:0 阅读:316
收集JAVA格式日志 1 查看Java格式日志 elasticsearch属于Java日志,可以收集elasticsearch作为Java日志范本 [root@node3 ~]# tail -f /usr/local/elasticsearch/logs/my-elktest-cluster.log ...
分类:编程语言 时间:2020-01-19 19:35:39 收藏:0 阅读:109
功能截图: 部分源码: #include<stdio.h> // EOF(=^Z或F6),NULL#include<stdlib.h> // srand( ) ,rand( ),exit(n)#include<iostream>using namespace std;#define TRUE 1#d ...
分类:编程语言 时间:2020-01-19 19:35:21 收藏:0 阅读:83
代码功能截图: 部分源码: #include<stdio.h>#include<stdlib.h>#define MAXSIZE 20typedef int ElemType;typedef struct{ ElemType a[MAXSIZE]; int length;}SqList;SqList ...
分类:编程语言 时间:2020-01-19 19:33:12 收藏:0 阅读:77
代码功能截图: 源代码: #include<stdio.h> // EOF(=^Z或F6),NULL#include<stdlib.h> // srand( ) ,rand( ),exit(n)#include<iostream>using namespace std;#define TRUE 1# ...
分类:编程语言 时间:2020-01-19 19:30:31 收藏:0 阅读:95
我是bee君,已采330篇花蜜,既甜又香。 ! 列表生成式和生成器 from numpy import randoma = random.random(10000)lst = []for i in a: lst.append(i * i) # 不推荐做法lst = [i * i for i in a ...
分类:编程语言 时间:2020-01-19 19:29:55 收藏:0 阅读:56
package rjcs; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.List; import org.apache.commons.io.FileUtils; import org. ...
分类:编程语言 时间:2020-01-19 19:25:58 收藏:0 阅读:221
from lxml import etree import requests """ 获取章节列表和地址 """ def getContents(): tagret = "https://www.kanunu8.com/files/old/2011/2447.html" req = requests ...
分类:编程语言 时间:2020-01-19 19:25:22 收藏:0 阅读:86
177557756775751284
上一页512833下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!