摘要:
https://www.dotcpp.com/oj/train/1012/ 1. set知识点/reverse函数知识点/sort函数知识点 /* 每组测试数据有两行,第一行有两个数n,m(0<n,m<1000000), 第二行包含n个各不相同,且都处于区间[-500000,500000]的整数 * 阅读全文
摘要:
啊 这个题目长的让人恐慌 20150303 节日 //技不如人 之前做的太恶心了 直接计算出来总时间再判断星期几 //我发现我老是喜欢把时间拆成1块1块 //题不难 照着我那又也能写出来就是很长很恶心罢了 #include<bits/stdc++.h> using namespace std; // 阅读全文
摘要:
前缀和 b站:https://www.bilibili.com/video/BV1wA411v7F3?from=search&seid=12091630423975717527 https://www.bilibili.com/video/BV1aE411b7Eh?from=search&seid= 阅读全文
摘要:
关于VPN 转自https://service.tp-link.com.cn/detail_article_167.html VPN(Virtual Private Network, 虚拟专用网络)是一个建立在公用网(通常是因特网)上的专用网络,但因为这个专用网络只是逻辑存在并没有实际物理线路,故称 阅读全文
摘要:
老实来讲这课我一头雾水满脑袋问号 import numpy as np from collections import Counter counttime = 0 #统计训练语料:spam 和 ham 各自评论总数,单词频率 def seperate(filename): hamcnt = Coun 阅读全文
摘要:
大佬们博客:https://blog.csdn.net/gatieme/article/details/50994533 请不要把它与之前所说的信号混淆起来,信号与信号量是不同的两种事物 #include <sys/types.h> #include <sys/ipc.h> #include <sy 阅读全文
摘要:
好久没写过python了天 一点点查的 import os import re from decimal import * import math ''' def getfiles(): filenames=os.listdir(r'F:\filePython\volume') print(len( 阅读全文
摘要:
在此感谢大佬:https://www.cnblogs.com/yinbiao/p/10460453.html 一步一步都有数据 https://blog.csdn.net/lisonglisonglisong/article/details/41777413 按着这个大佬的思路来的 #include 阅读全文
摘要:
。。。为什么50分。。啊暂时不想改了 换别人的思路吧 #include<bits/stdc++.h> 别看这个了 太曲曲绕绕 using namespace std; int r,y,g; int n; int change1(int sign,int number){ if(sign==1){ r 阅读全文
摘要:
1. 关于for的过程: ![](https://img2020.cnblogs.com/blog/1595358/202103/1595358-20210304161203022-1088744843.png) 必须满足条件后才能进去循环 2. 遇到的一个形式的++i: https://blog. 阅读全文