首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
3261专题
RFC 3261与Resiprocate对照参考
To do this, SIP network elementsconsult an abstract service known as a location service, whichprovides address bindings for a particular domain ---10.1 Overview ReSIProcate的LocationServer类,职责明确
阅读更多...
POJ 3261 Milk Patterns(二分+后缀数组)
题意: 找出出现k次的可重叠的最长子串的长度 思路: 论文的一道题,就跟论文思路一样,二分长度,根据height将后缀分成很多组,如果有一组出现了k次以上,就存在这个长度的符合题意的字串。 错误及反思: 代码: #include<cstdio>#include<cstring>#include<algorithm>using namespace std;const int N
阅读更多...