码迷,mamicode.com
首页 >  
搜索关键字:follow    ( 4585个结果
Linked List Cycle
Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using extra space? /** * Definition for singly-linked list. * class ListNode { * int val; * ...
分类:其他好文   时间:2014-07-13 16:32:04    阅读次数:152
nginx + django on windows
It's quite simple to run django on nginx on windows. Here are some key steps to follow -1. Download nginx/windows fromhttp://nginx.org/en/download.htm...
分类:Windows程序   时间:2014-07-11 19:40:41    阅读次数:362
Mysql一些复杂的语句
1.查找重复的行SELECT * FROM blog_user_relation a WHERE (a.account_instance_id,a.follow_account_instance_id) IN (SELECT account_instance_id,follow_account_in...
分类:数据库   时间:2014-07-11 10:46:13    阅读次数:228
poj 1573 Robot Motion
Robot Motion Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 10280   Accepted: 5006 Description A robot has been programmed to follow the instructions in...
分类:其他好文   时间:2014-07-09 11:24:57    阅读次数:290
poj 1573 Robot Motion
Robot Motion Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 10280   Accepted: 5006 Description A robot has been programmed to follow the instructions in...
分类:其他好文   时间:2014-07-09 11:24:16    阅读次数:196
【LeetCode】Linked List Cycle
题目 Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using extra space? 解答 首先要注意空链表不成环;不能开额外的空间,即空间复杂度是o(1),可采用“快慢指针”查检查链表是否含有环,如果在快的指针能够追上慢的指针,则有环,否...
分类:其他好文   时间:2014-07-08 19:17:47    阅读次数:160
POJ 1573:Robot Motion
Robot Motion Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 10267   Accepted: 5001 Description A robot has been programmed to follow the instructions ...
分类:其他好文   时间:2014-07-08 19:13:43    阅读次数:203
Citrix XenMobile学习笔记之四:MIM移动信息管理(Mobility Information Management)
产品简介:CitrixMIM移动信息管理由CitrixShareFile这一产品来集成。CitrixShareFile是一种企业“数据跟随(Follow-me-data)”解决方案,使IT部门可交付可靠的数据共享和同步服务,满足用户的移动性和协作需求,以及企业的数据安全需求。ShareFile使“数据跟随(Follow-medata)”..
分类:移动开发   时间:2014-07-08 12:09:40    阅读次数:281
CTCI 2.1
Write code to remove duplicates from an unsorted linked list.FOLLOW UPHow would you solve this problem if a temporary buffer is not allowed?/* Use a H...
分类:其他好文   时间:2014-07-08 00:59:05    阅读次数:305
【leetcode刷题笔记】Linked List Cycle II
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?判断一...
分类:其他好文   时间:2014-07-06 18:10:33    阅读次数:145
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!