同余: 概念: 整数a mod 整数b,得到正余数为c。 c±kb(k为自然数)均为a除以b的余数,属同余系。 一般写为ax≡≡b(mod c) ("≡"打法:Alt+小键盘的41428) 而同余理论创立者则是高斯! 接下来我们进一步了解同余的性质: (1)两数的和(或差)于他们余数的和(或差)同余 ...
分类:
其他好文 时间:
2019-04-22 13:53:42
阅读次数:
390
令 P?i?? 表示第 i 个素数。现任给两个正整数 M≤N≤10?4??,请输出 P?M?? 到 P?N?? 的所有素数。 输入格式: 输入在一行中给出 M 和 N,其间以空格分隔。 输出格式: 输出从 P?M?? 到 P?N?? 的所有素数,每 10 个数字占 1 行,其间以空格分隔,但行末不得 ...
分类:
其他好文 时间:
2019-04-20 19:41:40
阅读次数:
232
一.sorted函数 1.1解释 >>> help(sorted)Help on built-in function sorted in module __builtin__:sorted(...) sorted(iterable, cmp=None, key=None, reverse=False ...
分类:
编程语言 时间:
2019-04-19 13:24:11
阅读次数:
174
http://gitbook.liuhui998.com/3_5.html https://blog.csdn.net/feiniao8651/article/details/75006588 https://blog.csdn.net/stamsuper/article/details/79420 ...
分类:
其他好文 时间:
2019-04-18 00:49:34
阅读次数:
164
There are nn cities and mm roads in Berland. Each road connects a pair of cities. The roads in Berland are one-way. What is the minimum number of new ...
numpy数组求累加和 numpy.cumsum(a, axis=None, dtype=None, out=None) 按照所给定的轴参数返回元素的梯形累计和,axis=0,按照行累加。axis=1,按照列累加。axis不给定具体值,就把numpy数组当成一个一维数组。 >>> >>> a = n ...
分类:
编程语言 时间:
2019-04-11 22:15:26
阅读次数:
1203
原文链接:https://www.entityframeworktutorial.net/entityframework6/index-attribute-in-code-first.aspxEF 6提供了Index特性,用来在特定的列上面创建索引。class Student{ public int... ...
分类:
其他好文 时间:
2019-04-09 12:28:35
阅读次数:
156
jieba库的使用: jieba库是一款优秀的 Python 第三方中文分词库,jieba 支持三种分词模式:精确模式、全模式和搜索引擎模式,下面是三种模式的特点。 精确模式:试图将语句最精确的切分,不存在冗余数据,适合做文本分析 全模式:将语句中所有可能是词的词语都切分出来,速度很快,但是存在冗余 ...
分类:
其他好文 时间:
2019-04-03 16:44:35
阅读次数:
315
Problem Description As a cute girl, Kotori likes playing ``Hide and Seek'' with cats particularly.Under the influence of Kotori, many girls and cats a ...
分类:
其他好文 时间:
2019-03-22 17:07:55
阅读次数:
123
10种软件滤波方法(来自网络代码未验证) 1、限幅滤波法(又称程序判断滤波法) A、方法: 根据经验判断,确定两次采样允许的最大偏差值(设为A) 每次检测到新值时判断: 如果本次值与上次值之差<=A,则本次值有效 如果本次值与上次值之差>A,则本次值无效,放弃本次值,用上次值代替本次值 B、优点: ...
分类:
编程语言 时间:
2019-03-18 11:54:56
阅读次数:
164