Given a binary tree, imagine yourself standing on therightside of it, return the values of the nodes you can see ordered from top to bottom.For exampl...
分类:
其他好文 时间:
2015-04-08 07:52:00
阅读次数:
91
不会C也不会电路没关系,电学知识高中水平就可以。刚好自己想从头给自己再来一遍基础知识巩固,想带几个门外汉子一起学。一来帮助别人起步,二来自己加深理解等大家都上路了就一起做点小东西玩玩。一起发现问题,一起解决问题,也有个照应只要有四五个人愿意学我就尽我能力给你们讲解,我希望是真心想走这条路的人,而不是...
分类:
编程语言 时间:
2015-04-08 07:50:46
阅读次数:
126
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping yo...
分类:
其他好文 时间:
2015-04-08 07:53:03
阅读次数:
103
HDFS is a filesystem designed for storing very large files with streaming data access patterns, running on clusters of commodity hardware. Let’s examine this statement?in more detail:? Very lar...
分类:
其他好文 时间:
2015-04-08 06:49:45
阅读次数:
128
目录目录
概述
socket函数使用
struct sockaddr_un
socket
bind
listen
accept
connect
Socket IPC 实例
server
client
运行结果概述socket API原本是为网络通讯设计的,但是后来在socket的框架上发展出一种IPC机制,就是UNIX Domain Socket。虽然网络socket也可用于同一台主机的进程间通讯(...
分类:
其他好文 时间:
2015-04-08 06:49:58
阅读次数:
252
在C++中判断两个字符串str_a, str_b的值是否相等,可以使用if (str_a == str_b)。但是在Java中不能使用if (str_a == str_b)来判断字符串str_a,
str_b的值是否相等。“==”判断的是字符串str_a, str_b两个String对象在内存中存储位置是否一致,而不是字符串str_a, str_b的值是否相等。如需判断字符串str_a,...
分类:
编程语言 时间:
2015-04-08 06:50:58
阅读次数:
167
1.Servlet结合JSP做MVC三层开发遇到的问题?接着上一篇博客里面讲的实现一个简略版本的MVC框架,这个框架是基于Servlet技术的,为什么要写这个Mini版本的MVC框架呢,相信做过Servlet和JSP开发的哥们都有一个感受,贴上代码:public class UserServlet extends HttpServlet { public void doPost(HttpSer...
分类:
Web程序 时间:
2015-04-08 06:49:47
阅读次数:
237
C++中的容器
容器与容器适配器
容器包括vector, deque, list, map, multimap, set, multiset。容器适配器包括基于deque的stack和queue,基于vector的priority_queue。string也实现了stl的接口。
因为编写C++程序时经常需要查找容器的函数接口,故作此总结。C++新引入的容器与函数未引入。主要参考自:S...
分类:
编程语言 时间:
2015-04-08 06:48:39
阅读次数:
200
该文章探讨了如何利用串口通信(RS232)控制LG电视,并用qt编程实现了一个LG电视的控制软件。...
分类:
其他好文 时间:
2015-04-08 06:49:26
阅读次数:
241
midifan.com/moduleuser-index-449513.htmmidifan.com/moduleuser-index-449492.htmmidifan.com/moduleuser-index-449411.htmmidifan.com/moduleuser-index-4494...
分类:
其他好文 时间:
2015-04-08 06:47:57
阅读次数:
191
midifan.com/moduleuser-index-422005.htmmidifan.com/moduleuser-index-421836.htmmidifan.com/moduleuser-index-421866.htmmidifan.com/moduleuser-index-4220...
分类:
其他好文 时间:
2015-04-08 06:45:18
阅读次数:
172
midifan.com/moduleuser-index-414363.htmmidifan.com/moduleuser-index-414459.htmmidifan.com/moduleuser-index-414476.htmmidifan.com/moduleuser-index-4144...
分类:
Web程序 时间:
2015-04-08 06:46:47
阅读次数:
180
问题:XE8 Firemonkey 在 Windows 平台 Memo 卷动时,在第 1 , 2 行会产生重叠现象。修改前:修改后:适用:XE8 for Windows 平台修复方法:请将源码FMX.Memo.Style.pas复制到自己的工程目录里,再进行修改。找到TStyledMemo.TLin...
midifan.com/moduleuser-index-437891.htmmidifan.com/moduleuser-index-437950.htmmidifan.com/moduleuser-index-438107.htmmidifan.com/moduleuser-index-4379...
分类:
编程语言 时间:
2015-04-08 06:44:43
阅读次数:
204
一、Aware相关接口对于应用程序来说,应该尽量减少对Sping Api的耦合程度,然而有些时候为了运用Spring所提供的一些功能,有必要让Bean了解Spring容器对其进行管理的细节信息,如让Bean知道在容器中是以那个名称被管理的,或者让Bean知道BeanFactory或者Applicat...
分类:
编程语言 时间:
2015-04-08 06:43:53
阅读次数:
194
midifan.com/moduleuser-index-411953.htmmidifan.com/moduleuser-index-411684.htmmidifan.com/moduleuser-index-411920.htmmidifan.com/moduleuser-index-4118...
分类:
其他好文 时间:
2015-04-08 06:45:11
阅读次数:
1417
看了别人讨论,双指针比较方便http://www.cnblogs.com/springfor/p/3862042.htmlpublic class Solution { public ListNode deleteDuplicates(ListNode head) { if(he...
分类:
其他好文 时间:
2015-04-08 06:43:39
阅读次数:
147