魁梧小懒虫

文章
5
资源
1
加入时间
2年10月17天

Oracle Constraint_type,约束类型

oracle constraint_type 问题select distinct constraint_type from dba_constraints;结果:CONSTRAINT_TYPE?C  --checkOP   --primary keyR   --forgien keyU   --uniqueV其他三个是什么?cons

hdu 4267

按余数对数分组,tree[i][j]表示被i除余j的数的序列; 然后用10*10个树状数组就可以做了。是区间更新,单点求值。#include#define lowbit(x) ((x)&(-x))#includeint tree[11][11][50002];int a[50002]; int n;void update(int k,int i,int j,int c){

install gcc-4.8 and g++-4.8 on ubuntu16.04

the default gcc on ubuntu16.04 is gcc-5.4 (and g++-5.4). Below is the way to install gcc4.8 (and g++-4.8):install gcc-4.8 and g++-4.8 on ubuntu16.04sudo aptitude install gcc-4.8sudo update-alter