码迷,mamicode.com
首页 >  
搜索关键字:net    ( 133240个结果
[LeetCode]106 Construct Binary Tree from Inorder and Postorder Traversal
https://oj.leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/http://blog.csdn.net/linhuanmars/article/details/24390157/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){v..
分类:其他好文   时间:2015-01-06 15:54:59    阅读次数:138
linux飞信报警模块在centos6.5下的安装
飞信模块安装 第一步:下载飞信和飞信依赖库文件 http://bbs.it-adv.net去这个网站下载 第二步:将下载的fetion放置到/usr/bin/下,将依赖库文件解压,并将解压后里面的所有库文件放置到/usr/lib64/fetion下面 mkdir/usr/lib64/fetion cpfetion/usr/lib64/fetion cpfet..
分类:系统相关   时间:2015-01-06 15:54:48    阅读次数:162
Oracle Study之案例--安装Oracle内核参数配置
OracleStudy之案例--安装Oracle内核参数配置在Linux系统下,安装Oracle之前,除了检查操作系统的硬件和软件是否满足安装需要之外,一个重点就是修改内核参数,其中最主要的是和内存相关的参数设置。案例分析:查看当前系统的内核参数配置:[root@rh6~]#sysctl-p net.ipv4.ip_fo..
分类:数据库   时间:2015-01-06 15:53:02    阅读次数:227
[LeetCode]107 Binary Tree Level Order Traversal II
https://oj.leetcode.com/problems/binary-tree-level-order-traversal-ii/http://blog.csdn.net/linhuanmars/article/details/23414711/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publiccla..
分类:其他好文   时间:2015-01-06 15:49:37    阅读次数:96
[LeetCode]111 Minimum Depth of Binary Tree
https://oj.leetcode.com/problems/minimum-depth-of-binary-tree/http://blog.csdn.net/linhuanmars/article/details/19660209/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publicclassSoluti..
分类:其他好文   时间:2015-01-06 15:47:12    阅读次数:118
[LeetCode]110 Balanced Binary Tree
https://oj.leetcode.com/problems/balanced-binary-tree/http://blog.csdn.net/linhuanmars/article/details/23731355/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publicclassSolution{ publ..
分类:其他好文   时间:2015-01-06 15:46:32    阅读次数:125
[LeetCode]112 Path Sum
https://oj.leetcode.com/problems/path-sum/http://blog.csdn.net/linhuanmars/article/details/23654413/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publicclassSolution{ publicbooleanhas..
分类:其他好文   时间:2015-01-06 15:45:33    阅读次数:137
使用 go 写一个检测 tcp udp 状态的包
因为要跟着 dockerpool 的基友写 Docker 管理的程序,所以今年的目标是学习 go 语言。看完 go 的入门教程,高深的代码还看不懂,所以决定先尝试写一些平常可以用的东西,mac 底下的 nc 命令可以检测很多东西,但是用着不习惯,所以决定写一个 check tcp udp 的包。package main import ( "flag" "fmt" "net...
分类:其他好文   时间:2015-01-06 15:33:29    阅读次数:113
ASP.NET MVC请求处理过程
分类:Web程序   时间:2015-01-06 15:29:51    阅读次数:185
windows下Socket链接溢出
最近在windows下使用通过多线程使用jdbc操作数据库,在线程数设置为5,并且每个线程执行完成后Sleep(1000),在这种情况下,竟然还会报错:java.net.SocketException No buffer space available (maximum connections re...
分类:Windows程序   时间:2015-01-06 15:29:04    阅读次数:251
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!