炙热秀发

文章
3
资源
0
加入时间
2年10月18天

杭电oj1170

根据输入的数学字符±*/计算数值需要注意:The result should be rounded to 2 decimal places If and only if it is not an integer.!!!!!#include<iostream>#include<cstdio>#include<cstring>#include<alg...

双指针&位运算&离散化&区间合并

双指针  双指针核心,利用某种性质降低时间复杂度。一般可以将O(n2)降为O(n)。这里的指针并不是指针变量。模板:for(int i=0,j=0;i<n;i++){ while(j<i && check(i,j)) j++; //这道题的逻辑}结合一个具体例题来讲解:最长连续不重复子序列#include<iostream>using namespace std;const int maxn =

数据库_触发器和事件

本文所使用的数据库样例请参见数据源表1.触发器触发器是程序员设定的在特定条件下将会执行的语句集合1.1 创建触发器语法delimiter 99create trigger trigger_name after(before) trigger_eventon table_name for each rowbegin ##sentence bodyend 99delimiter...