08 2014 档案

摘要:前言 【LeetCode 题解】系列传送门: http://www.cnblogs.com/double-win/category/573499.html 1.题目描述 Given a linked list, swap ever... 阅读全文
posted @ 2014-08-27 15:51 Double_win 阅读(213) 评论(0) 推荐(0)
摘要:本文主要解决MySQL中如何删除unique key约束 阅读全文
posted @ 2014-08-10 18:23 Double_win 阅读(9736) 评论(0) 推荐(0)
摘要:前言 【LeetCode 题解】系列传送门: http://www.cnblogs.com/double-win/category/573499.html 1.题目描述 Given a set of candidate numbers (C) and a target numb... 阅读全文
posted @ 2014-08-08 17:59 Double_win 阅读(256) 评论(0) 推荐(0)
摘要:前言 【LeetCode 题解】系列传送门: http://www.cnblogs.com/double-win/category/573499.html 1.题目描述 Given a linked list, reverse the nodes of a linked li... 阅读全文
posted @ 2014-08-06 23:17 Double_win 阅读(213) 评论(0) 推荐(0)
摘要:二叉树的先序遍历,采用递归以及非递归方式 阅读全文
posted @ 2014-08-06 21:40 Double_win 阅读(326) 评论(0) 推荐(0)
摘要:前言 【LeetCode 题解】系列传送门: http://www.cnblogs.com/double-win/category/573499.html 1.题目描述 Given a binary tree, check whether it is a mirror ... 阅读全文
posted @ 2014-08-04 23:04 Double_win 阅读(187) 评论(0) 推荐(0)
摘要:“Openwrt项目开发笔记”系列文章传送门 阅读全文
posted @ 2014-08-03 15:05 Double_win 阅读(8106) 评论(1) 推荐(2)
摘要:在上一节中,我们已经搭建了MySQL数据库了,因此在这一节中,我主要讲解php的安装,以及php的运行平台Nginx的安装。 阅读全文
posted @ 2014-08-03 14:51 Double_win 阅读(13849) 评论(4) 推荐(0)
摘要: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?题意:... 阅读全文
posted @ 2014-08-02 20:32 Double_win 阅读(293) 评论(0) 推荐(0)
摘要:在本人的项目中,运行在路由器上的服务器采用Nginx+MySQL+PHP 架构。通常较为常见的web框架为Lamp(Linux+Apache+Mysql+PHP),为何我们选择LNMP呢?我将在后续的几篇文章中给出答案。 首先我们来介绍如何在Openwrt上搭建MySQL数据库。 阅读全文
posted @ 2014-08-02 12:35 Double_win 阅读(8136) 评论(0) 推荐(0)
摘要:在上一节中,我主要讲述了如何在Openwrt上安装Samba服务器以及Ftp服务器。在本节中,我将介绍一下,一个比较实用的功能:DDNS。为远程物联网控制打下基础。 阅读全文
posted @ 2014-08-02 00:29 Double_win 阅读(16192) 评论(0) 推荐(1)
摘要:Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.题意:翻转... 阅读全文
posted @ 2014-08-01 00:44 Double_win 阅读(184) 评论(0) 推荐(0)