
算法
技术笔记本
这个作者很懒,什么都没留下…
展开
-
计算excel列的名字
#include using namespace std;int main(){ unsigned int column; cin>>column; if ( column > 0){ cout<<"invalid input"<<endl; return 1; } char begin = 'A'; cha原创 2013-07-10 11:46:06 · 1040 阅读 · 0 评论 -
bit相关算法实现
bit相关算法实现,原文链接转载 2013-02-04 17:41:34 · 1070 阅读 · 0 评论 -
Regular expressions - An introduction
Regular expressions are a pattern matching standard for string parsing and replacement. They are used on a wide range of platforms and programming environments. Originally missing in Visual Basic, reg转载 2013-03-03 21:46:20 · 1897 阅读 · 0 评论 -
How to do distributed locking (转)
As part of the research for my book, I came across an algorithm called Redlock on the Redis website. The algorithm claims to implement fault-tolerant distributed locks (or rather, leases [1]) on top o...转载 2018-11-06 09:09:28 · 1344 阅读 · 0 评论 -
Tutorial on Binary Descriptors – part 1(转)
Tutorial on Binary Descriptors – part 1Why Binary Descriptors?Following the previous post on descriptors, we’re now familiar with histogram of gradients (HOG) based patch descriptors. SIFT[1], SUR...转载 2018-11-18 21:22:13 · 322 阅读 · 0 评论