题目 P2167 [SDOI2009]Bill的挑战 Sheng bill不仅有惊人的心算能力,还可以轻松地完成各种统计。在昨天的比赛中,你凭借优秀的程序与他打成了平局,这导致Sheng bill极度的不满。于是他再次挑战你。这次你可不能输!(一个不服输让我这个ruoji码了俩小时) 这次,比赛规则 ...
分类:
其他好文 时间:
2020-06-27 20:22:48
阅读次数:
66
1、下载安装包,下载链接如下: http://ftp.gnu.org/gnu/binutils/ wget http://ftp.gnu.org/gnu/binutils/binutils-2.32.tar.gz tar -xzvf binutils-2.32.tar.gzcd binutils-2 ...
分类:
系统相关 时间:
2020-06-26 20:24:07
阅读次数:
280
一 练习内容 1 对于input函数来说,我们还可以给用户放一个提示,让用户知道该输入什么,例如:age = input("How old are you?"),提示用户输入年龄 2 代码 age = input("How old are you?") height = input("How tal ...
分类:
其他好文 时间:
2020-06-25 23:42:58
阅读次数:
62
After change SessionID data in Session variables is lost Command "Manager.SaveSessionID" will remove all data of old sessionid. There is only one way ...
分类:
其他好文 时间:
2020-06-22 19:41:23
阅读次数:
85
今天尝试将mitmdump证书放置到系统证书下的时候不能正常移动证书文件 尝试使用adb命令同样提示权限问题。 查阅一番后: push 之前使用命令:adb remount 计算证书名 openssl x509 -subject_hash_old -in xxx.pem 算出数值 需要安装OpenS ...
分类:
移动开发 时间:
2020-06-20 18:30:56
阅读次数:
149
一、JVM的垃圾回收器大致分为七种类 新生代收集器:Serial、ParNew、Parallel Scavenge。 老年代收集器:Serial Old、CMS、Parallel Old。 堆内存垃圾收集器:G1。(新生代老年代都能用) 附录: 串行:垃圾回收器(Serial Garbage Col ...
分类:
其他好文 时间:
2020-06-18 21:45:28
阅读次数:
76
#!/bin/bash a="node1 node2 node3 node4 node5" OLD_IFS="$IFS" IFS=" " arr=($a) IFS="$OLD_IFS" for s in ${arr[@]} do echo "$s" done ...
分类:
编程语言 时间:
2020-06-12 20:16:27
阅读次数:
109
说明: <> 中的内容是自己定义的内容 [] 中的内容是可以省略的 field 包含字段名和数据类型,field_name 仅指字段名 table_name 指表名 position 指字段位置,可取值:FIRST、AFTER <field> 修改表名 -- 修改数据表名称。 -- old_tabl ...
分类:
数据库 时间:
2020-06-10 19:12:24
阅读次数:
75
反转一个单链表。 示例: 输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL // 将链表分为new和old两个链表 // curOld是old链表的头指针 // curNew是new链表的头指针 // 本质上讲old链表的结点一个一个取出后,将取出的节点 ...
分类:
其他好文 时间:
2020-06-06 18:51:43
阅读次数:
58
import json from Db import Db db = Db() ''' 参考配置文件 { "file": "test.json", "path": "data", "table": "tk_bill", "comitcount": 50, "map": { "trade_id": " ...
分类:
数据库 时间:
2020-06-06 18:16:37
阅读次数:
221