该算法是雅虎工程师提出的一个解决合约制广告或者说GD(担保式投放)投放系统在线分配问题的贪心算法,思路很直接,下面是本人对照其论文整理的思路,里面有自己的理解。 论文题目:Ad Serving Using a Compact Allocation Plan google一下即可得到。 ======================================================
oracle中的高水位(HWM) 找一个记录数较多的表,100万条以上的,如表test1。 create table test2 as select * from test1 where 1=2; insert into test2 select * from test1; commit; delete from test2; commit; 此时执行select * from test2;