#include <iostream> #include <cstdlib> /* include to allow rand() to be used */ #include<ctime>/*just used in function: time(NULL)*/ using namespace s ...
分类:
其他好文 时间:
2020-01-30 15:49:00
阅读次数:
76
#include <set> #include <map> #include <deque> #include <queue> #include <stack> #include <cmath> #include <ctime> #include <bitset> #include <cstdio> ...
分类:
其他好文 时间:
2020-01-28 19:16:21
阅读次数:
99
[TOC] 1. ls 查看列表 语法 ls [ aAdfFhlinrRSt] [文件或目录] ls [ color={never, auto, always}] [文件或目录] ls [ full time] [文件或目录] ls [ time={atime, ctime}] [文件目录] | 选 ...
分类:
其他好文 时间:
2020-01-28 19:15:10
阅读次数:
108
import time # print(time.time()) # time.sleep(3) # print(help(time)) # print(time.gmtime()) # 中国24个时区 北京+8 结构化时间time.struct_time(tm_year=2020, tm_mon= ...
分类:
其他好文 时间:
2020-01-28 17:33:42
阅读次数:
73
"题目链接" problem 给出一个多项式f,求一个多项式g使得$f(x) g(x) \equiv 1 (mod \ x ^ n)$ solution 利用倍增。假设现在我们已经求出了$f(x)$在$mod \ x ^ n$的逆元$g(x)$,考虑如何求出在$mod\ x ^{2n}$下的逆元$g ...
分类:
其他好文 时间:
2020-01-28 13:55:55
阅读次数:
57
关于 time.h https://www.runoob.com/cprogramming/c-standard-library-time-h.html #include <iostream> #include <ctime> using namespace std; int main() { st ...
分类:
编程语言 时间:
2020-01-27 23:34:48
阅读次数:
193
# -*- coding: utf-8 -*- __author__ = 'zhangh' import logging class Logging(object): def __init__(self, path): self.path = path def log(self): log_form ...
分类:
编程语言 时间:
2020-01-26 18:58:01
阅读次数:
170
步骤如下: 1.引入头文件: #include <time.h> 或者 #include <ctime> 2.定义: clock_t start1,end1; //clock_t是用来保存时间的数据类型 3.把start放在想测试运行时间的那一部分前: start1 = clock(); //clo ...
分类:
其他好文 时间:
2020-01-25 11:44:52
阅读次数:
125
ls (List) 功能描述:显示目录文件 语法:ls [选项] [文件或目录] 命令选项 -a 显示所有文件,包括隐藏文件(all) -A 显示所有文件,包含隐藏文件,但不包含.及.. -l详细信息显示(long) 文件类型 访问计数 所有者 所属组 文件大小(默认大小为1字节)最后一次修改时间 ...
分类:
系统相关 时间:
2020-01-16 19:22:29
阅读次数:
115
[toc] Django Cookies与Session组件 Cookies介绍 Cookie具体指的是一段小信息,它是服务器发送出来存储在浏览器上的一组组键值对,下次访问服务器时浏览器会自动携带这些键值对,以便服务器提取有用信息。 cookie的工作原理 由服务器产生内容,浏览器收到请求后保存在本 ...
分类:
其他好文 时间:
2020-01-15 21:31:52
阅读次数:
80