码迷,mamicode.com
首页 > 2021年04月28日 > 全部分享
10以内的数字的四则运算
#include <iostream>#include <cstdlib>#include <ctime>using namespace std;int main(){ int num1,num2,op,result1,result2; //num1,num2:操作数;op:运算符;result1, ...
分类:其他好文   时间:2021-04-28 12:11:52    阅读次数:0
Linux - 防火墙 - iptables
防火墙由netfilter组成,iptables是控制netfilter的软件 iptables(重点)- 用户空间的工具 环境准备 systemctl stop firewalld.service systemctl disable firewalld.service 或systemctl dis ...
分类:系统相关   时间:2021-04-28 12:11:32    阅读次数:0
网络管理:基本编码规则(BER)
#简单编码规则 基本编码规则(Basic Encoding Rule)把 ASN.1 表示的抽象类型值编码为字节串,这种字节串的结构为类型—长度—值,简称 TLV(Type-Length-Value)。 其中 Type 和 Length 都是1个字节,而且值部分还可以递归地再编码为 TLV 结构,这 ...
分类:其他好文   时间:2021-04-28 12:11:12    阅读次数:0
好不容易写完的词云
from PIL import Image import wordcloud import numpy as np import matplotlib.pyplot as plt import jieba #文本处理 def f(): with open('停用词.txt','r',encoding ...
分类:其他好文   时间:2021-04-28 12:10:50    阅读次数:0
李尔王皮卡丘
from PIL import Image import wordcloud import numpy as np import matplotlib.pyplot as plt import jieba #文本处理 def f(): with open('停用词.txt','r',encoding ...
分类:其他好文   时间:2021-04-28 12:10:30    阅读次数:0
First Unique Character in a String (找到一个字符串中第一个不重复的字符)
问题描述 下面是有关这个问题的描述部分。 英文 Given a string s, return the first non-repeating character in it and return its index. If it does not exist, return -1. 中文 针对给 ...
分类:其他好文   时间:2021-04-28 12:10:00    阅读次数:0
【日常学习】Ubuntu与算法的常用指令
nvidia-smi 如果没有显示的话,说明显卡驱动没装好,需要重新装一下 会打一万遍的指令,到底代表什么意思呢?一起看一下吧: 第一行当然是日期啦 NVIDIA-SMI 450.102.04 Driver Version指的是驱动版本 CUDA Version指的是CUDA版本(当忘记怎么查看CU ...
分类:编程语言   时间:2021-04-28 12:09:39    阅读次数:0
7.Jenkins进阶之流水线pipeline语法入门学习(2)
目录一览: (2) Declarative Pipeline Syntax 2.1) Sections - 章节 2.2) Directives - 指令 2.3) Sequential Stages - 顺序阶段 2.4) Parallel - 并行 2.5) Matrix - 模型 语法总结 s ...
分类:其他好文   时间:2021-04-28 12:09:24    阅读次数:0
zabbix监控服务邮箱告警的三种配置方式
zabbix监控服务邮箱告警的三种配置方式 环境说明: 环境 IP地址 主机名 需要安装的应用 系统版本 服务端 192.168.110.30 zabbix.example.com lamp架构 zabbix_server zabbix_agent redhat 8.2 客户端 192.168.11 ...
分类:其他好文   时间:2021-04-28 12:08:54    阅读次数:0
习题练习:列表去重
题目描述: 指定列表为: ["b", "c", "d", "c", "b", "a", "a"] 对于重复出现的元素,仅保留一个,移除重复的。 解法1:使用集合去重 lst = ["b", "c", "d", "c", "b", "a", "a"] # 解法1:集合去重 de_duplication ...
分类:其他好文   时间:2021-04-28 12:08:39    阅读次数:0
golang 无向简单图邻接多重表
package main import "fmt" type MultipleEdgeNode struct { iVex int iLink *MultipleEdgeNode jVex int jLink *MultipleEdgeNode } type MultipleVertexNode s ...
分类:其他好文   时间:2021-04-28 12:08:23    阅读次数:0
8.Jenkins进阶之流水线pipeline基础使用实践(1)
?目录一览: 0x01 基础实践 (1) Maven 构建之 Pipeline Script (2) Maven 构建之 Pipeline Script from SCM (3) Jenkins pipeline 之 邮件(Email)发信管理 WeiyiGeek Blog - 为了能到远方,脚下的 ...
分类:其他好文   时间:2021-04-28 12:08:05    阅读次数:0
解决使用库pymysql连接不上数据库的问题
pymysql连接数据库报错: 解决方法: 将db = pymysql.connect(“localhost”,“root”,“root”,“testdb” )修改为 db = pymysql.connect(host=“localhost”, user=“root”, password=“root ...
分类:数据库   时间:2021-04-28 12:07:51    阅读次数:0
二次封装上传element
<!-- Vue SFC --> <template> <div> <el-upload class="upload-demo" action="" v-if="show" :on-preview="handlePreview" :on-remove="handleRemove" :before-u ...
分类:Web程序   时间:2021-04-28 12:07:33    阅读次数:0
ASP.NET JsonResult返回日期格式及首字母大写解决
添加一个类继承JsonResult public class CustomJsonResult : JsonResult { private const string _dateFormat = "yyyy-MM-dd HH:mm:ss"; public CustomJsonResult() { s ...
分类:Web程序   时间:2021-04-28 12:07:11    阅读次数:0
vue .splice is not a function解决方案
在帮朋友解决一个vue的问题的时候,想删除数组里面的一个元素,在网上查询使用splice方法,但一直报错,提示jtConlist.splice is not a function,找了好长时间,也没找到问题 splice是数组的方法,按道理肯定有这个方法,除非jtConlist不是数组,使用type ...
分类:其他好文   时间:2021-04-28 12:06:50    阅读次数:0
字符串反转的几种方法
def reverse_str(s): from functools import reduce res = s[::-1] # 切片 res = "".join(list(reversed(s))) # 反转函数 res = reduce(lambda x,y:y+x, s) # reduce p ...
分类:其他好文   时间:2021-04-28 12:06:36    阅读次数:0
117条   上一页 1 2 3 4 5 6 7 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!