虚幻电话

文章
4
资源
0
加入时间
2年10月21天

Codeforces 220B(Little Elephant and Array)

题意:给出一个长度为n的序列,然后给出m个区间询问,求区间内数字出现次数等于该数字的个数;思路:这题有很多种解法,之前用一种nsqrt(n)的暴力解法写过,这次用莫队算法再写一次,复杂度是(n+q)sqrt(n);#include #include #include #include #include using namespace std;const int N = 1

Python MySQLdb模块中的ping()

本文转自:http://www.cnblogs.com/bugmaker/articles/2444905.htmlMySQLdb.connection.ping()函数可以用来检测在访问前检测数据库的连接是否存在使用help函数获得帮助信息如下:Checks whether or not the connection to the server isworking. If i