初次意识到程序的时间复杂度(tle多了 ) 第一次写博客(被大佬们的博客所折服orz) 拿打素数表的程序为例 优化前代码: #include<iostream> #include<cmath> #define ll long long using namespace std; int a[1000000]; int main() { int k=0; for(int i=2;i<1000000/2;i++) { int flag=0; for(int j=2;j<=sq…
PS:http://blog.csdn.net/love_rongrong/article/details/6712883 字符串模糊比较 日期类型的模糊查询是不能直接进行的,要先转换成字符串然后再查询 例子如下: select * from table where to_char(“timestamp", 'yyyy-mm-dd hh24:mi:ss') like '%08:30:00%' 这里要注意的是postgre的时间处理上,不分大小写,时分秒格式:hh24:mi:ss,这样才能正常的显…