码迷,mamicode.com
首页 >  
搜索关键字:per    ( 2089个结果
codeforces605
A. Three Friends #include<bits/stdc++.h> #define rep(i, n) for(int i=0;i!=n;++i) #define per(i, n) for(int i=n-1;i>=0;--i) #define Rep(i, sta, n) for( ...
分类:其他好文   时间:2019-12-19 19:07:18    阅读次数:54
js原型和原型链的简单理解
构造函数创建对象: function Person() { } var person = new Person(); person.name = 'Tian'; console.log(person.name); //Tian Person 就是一个构造函数,使用 new 创建了一个实例对象 per ...
分类:Web程序   时间:2019-12-18 12:56:55    阅读次数:77
CF 1020B Badge
之前写过DFS的题,但是或多或少有参考别人的思路,最近开始专攻DFS,下面这道题就是DFS练习第一题CF 1020B,之后训练完后抽时间写一篇DFS专项。 B. Badge time limit per test 1 second memory limit per test 256 megabyte ...
分类:其他好文   时间:2019-12-17 22:37:33    阅读次数:93
codeforces1276A As Simple as One and Two
C.As Simple as One and Two A. As Simple as One and Two time limit per test 3 seconds memory limit per test 256 megabytes input standard input output s ...
分类:其他好文   时间:2019-12-17 22:13:12    阅读次数:81
Django之分页器组件与自定义
Django之分页器组件 class Pagination(object): def __init__(self,current_page,all_count,per_page_num=2,pager_count=11): """ 封装分页相关数据 :param current_page: 当前页 ...
分类:其他好文   时间:2019-12-17 11:49:59    阅读次数:108
CF1272 B DIV3 ---代码对比
这次DIV3有点可惜啊,题解是我的与学长的代码对比 学长的原博客https://www.cnblogs.com/xyq0220/p/12036109.html B.Snow Walking Robot time limit per test 2 seconds memory limit per te ...
分类:其他好文   时间:2019-12-16 13:30:59    阅读次数:111
五.1分页--展示所有页码
应该规定每页显示多少条数据,再拿总数据量除每页显示的数据条数就知道到底总共有多少页。 需要的变量: 最多显示的页码数--max_show = 11 half_show = max_show // 2 每页显示的数据条数--per_num = 10 总数据量--all_count = len(user ...
分类:其他好文   时间:2019-12-15 12:49:58    阅读次数:87
【Codeforces】B. Div Times Mod
B. Div Times Mod time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Vasya likes to solve equ ...
分类:其他好文   时间:2019-12-10 00:35:37    阅读次数:80
Oracle 查看用户所在的表空间剩余表空间
SELECTF.TABLESPACE_NAME,(T.TOTAL_SPACE-F.FREE_SPACE)"USED(MB)",F.FREE_SPACE"FREE(MB)",T.TOTAL_SPACE"TOTAL(MB)",(ROUND((F.FREE_SPACE/T.TOTAL_SPACE)100))||‘%‘PER_FR
分类:数据库   时间:2019-12-09 19:15:12    阅读次数:187
go-channel处理高并发请求
go channel处理高并发请求 [TOC] 最近看了一篇文章讲解怎样使用go channel的,周末就花了点时间学习了一下,文章原文地址: http://marcio.io/2015/07/handling 1 million requests per minute with golang/ , ...
分类:其他好文   时间:2019-12-08 17:31:52    阅读次数:138
2089条   上一页 1 ... 21 22 23 24 25 ... 209 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!