1 #include <bits/stdc++.h> 2 using namespace std; 3 int main() { 4 int t; 5 cin >> t; 6 while (t--) { 7 int a, b; 8 string a_line, b_line; 9 cin >> a ...
分类:
其他好文 时间:
2020-11-30 15:20:06
阅读次数:
5
每一种语言都有它的编程风格,打个比方就像各种菜系,粤菜,川菜,淮扬菜每一种都有自己的独特风格.Python的开发者用Pythonic这个词来形容那种符合python风格的代码.这种pythonic风格的代码,既不是非常严格的规范,也不是编辑器强加给开发者的规则,它是大家在python语言的过程中指定的一种指南,一种协同工作过逐渐形成的习惯.宗旨就是直观,简洁而容易读.1,避免只使用大小写来区分不同
分类:
编程语言 时间:
2020-11-27 11:10:53
阅读次数:
11
关于isNaN() 判断是否是非数字(如果不是number类型,先隐式类型 转换成number类型,在判断是否非数字) 是非数字,返回true,不是非数字(是非数字 =》false) console.log(isNaN(100)); //false console.log(isNaN(100.55) ...
分类:
其他好文 时间:
2020-11-24 12:41:51
阅读次数:
10
string方法的一些函数作用 2.继承演示 -子类 using System; using System.Collections.Generic; using System.Text; namespace ConsoleApp1 { /// <summary> /// 胡萝卜类:继承与蔬菜类。在这 ...
1.创建两个库,每个库创建两个分表t_order_1,t_order_2 DROP TABLE IF EXISTS `t_order_1`; CREATE TABLE `t_order_1` ( `id` int(10) NOT NULL AUTO_INCREMENT, `amount` int(2 ...
分类:
数据库 时间:
2020-11-21 12:32:56
阅读次数:
12
#include<iostream> using namespace std; class Composition{ public: //同时有类内初始值和初始化列表时候,最终值为初始化列表中的 Composition():im(this),m(20){cout<<"Composition ctor ...
分类:
其他好文 时间:
2020-11-20 12:02:36
阅读次数:
10
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following defin ...
分类:
其他好文 时间:
2020-11-20 12:00:39
阅读次数:
9
给定一个长度为 $n$ 的序列 $a$,每次可以选择 $3$ 个不相同的下标 $i,j,k$,计算 $a_i \oplus a_j \oplus a_k$,赋值给 $a_i,a_j,a_k$。问是否能通过不超过 $n$ 次操作,使得所有数相同,构造方案。 ...
分类:
其他好文 时间:
2020-11-19 12:55:32
阅读次数:
21
前言 C中我们会进行malloc一块内存,然后free掉。但是经常会遇到我们忘记写free,导致内存溢出,C++也有类似的情况,为了解决掉我们忘记释放内存的习惯,C++引入了几种智能指针,为的就是让函数可以在正常终止或者异常终止的情况下,改指针的指向的内存都可以处于正确的状态。shared_ptr、 ...
分类:
编程语言 时间:
2020-11-19 12:30:14
阅读次数:
6
Zabbix的监控出现告警,具体的告警信息如下:“SQL Instance MSSQLSERVER: Could not allocate a new page”和“D::Disk space is low(used > 80%)" 第一个告警是Zabbix template for Microso ...
分类:
数据库 时间:
2020-11-17 12:16:53
阅读次数:
16