大方树叶

文章
3
资源
1
加入时间
2年10月21天

代理模式(Proxy Pattern)

  定义:Provide a surrogate or placeholder for another object to control access to it.(为其他对象提供一种代理以控制对这个对象的访问。)● Subject抽象主题角色抽象主题类可以是抽象类也可以是接口,是一个最普通的业务类型定义,无特殊要求。● RealSubject具体主题角色也叫做被委托角色、被代理角色。它才是冤大...

USACO 2.3 The Longest Prefix (prefix)

//Main Idea://Dynamic Programming//For String srt which length is len,//match_str_len[i] means the max len prefix of str[i...len-1];//DP state transition equation://If str[i...i+primitive_len] ma