2014年11月23日

Double Circular Sorted Linked List Insert

摘要: void Insert(LinkedList * &start, int val){ LinkedList * cur = start; if (start == NULL) { auto l = new LinkedList(val); l->pre ... 阅读全文

posted @ 2014-11-23 15:38 fatemaster 阅读(184) 评论(0) 推荐(0)

How to code a URL shortener?

摘要: I want to create a URL shortener service where you can write a long URL into an input field and the service shortens the URL to “http://www.example.or... 阅读全文

posted @ 2014-11-23 15:37 fatemaster 阅读(246) 评论(0) 推荐(0)

导航