首页 > 2014年01月29日 > 全部分享
Convert Sorted Array to Binary Search Tree
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.Code:/** * Definition for binary tree * struct TreeNo...
分类:其他   时间:2014-01-29 14:55:45    收藏:0  评论:0  赞:0  阅读:392
[Leetcode]-- Swap Nodes in Pairs
Swap Nodes in PairsGiven a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2-...
分类:其他   时间:2014-01-29 14:54:05    收藏:0  评论:0  赞:0  阅读:431
黄聪:V2010中C#实现友好的等待任务完成时,出现的多线程悬浮窗体
实现效果如下:项目已经打包后,大家直接下载吧:【HCWaitForm.rar】
分类:Windows开发   时间:2014-01-29 14:54:55    收藏:0  评论:0  赞:0  阅读:913
(转)12款开源JavaScript库
JavaScipt几乎是所有前端开发人员必会的编程语言,并且,随着各种移动APP的串红,JavaScript还可以用来开发移动应用。除此以外,为了丰富前端/移动开发,有不少开发者推出了各种基于JavaScript的库,这些几乎能实现任何你需要的功能,并且有些库可以用来开发某些特定的功能,非常强大。本...
分类:Web开发   时间:2014-01-29 14:53:15    收藏:0  评论:0  赞:0  阅读:486
[Leetcode]-- Maximum Depth of Binary Tree
/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */public c...
分类:其他   时间:2014-01-29 14:51:35    收藏:0  评论:0  赞:0  阅读:348
C语言学习-关于C语言中sizeof关键字的测试
执行结果如下:本示例的测试环境是:操作系统:CentOS(Linux 192 2.6.18-348.6.1.el5 x86_64 GNU/Linux)编译器 :cc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-54)测试代码如下: 1 #include 2 #includ...
分类:编程语言   时间:2014-01-29 14:52:25    收藏:0  评论:0  赞:0  阅读:458
什么是REST?
云计算的时代越来越多的提到一个词REST,那么什么是REST?如果你还不清楚,可以看这个视频和系列教程: http://www.restapitutorial.com/lessons/whatisrest.html
分类:其他   时间:2014-01-29 14:49:05    收藏:0  评论:0  赞:0  阅读:319
Tomcat启动失败或被强制终止
通常是端口别抢占需要查找是哪一个端口被强占,根据PID查找抢占此端口的程序,然后终止打开cmd1.查看所有的端口占用情况C:\>netstat -ano 协议 本地地址 外部地址 状态 PID TCP 127.0.0.1:1434 0.0.0.0:0 LISTENING 3236 TCP 127.0...
分类:其他   时间:2014-01-29 14:48:15    收藏:0  评论:0  赞:0  阅读:368
[Leetcode]-- Permutations
Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:其他   时间:2014-01-29 14:47:25    收藏:0  评论:0  赞:0  阅读:499
【javascript】随手记代码
//js实现的当前界面的刷新、前进、后退console.log Firefox最先提出的,后来被各个浏览器采用;即在控制台输出日志,不会像alert一样打断程序进程,适合用于与Firebug或者是其他的开发者工具配合进行调试//全局变量function sum1(x,y){ result = x+ ...
分类:Web开发   时间:2014-01-29 14:46:35    收藏:0  评论:0  赞:0  阅读:517
Linux 查看CPU信息、机器型号等硬件信息
原文出处:http://www.51testing.com/?uid-225738-action-viewspace-itemid-210333测试机器的硬件信息:查看CPU信息(型号)# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 8...
分类:其他   时间:2014-01-29 14:44:55    收藏:0  评论:0  赞:0  阅读:436
Java多线程系列--“JUC集合”03之 CopyOnWriteArraySet
概要本章是JUC系列中的CopyOnWriteArraySet篇。接下来,会先对CopyOnWriteArraySet进行基本介绍,然后再说明它的原理,接着通过代码去分析,最后通过示例更进一步的了解CopyOnWriteArraySet。内容包括:CopyOnWriteArraySet介绍CopyO...
分类:其他   时间:2014-01-29 14:45:46    收藏:0  评论:0  赞:0  阅读:719
LeetCode: Reverse Linked List II
Reverse a linked list from positionmton. Do it in-place and in one-pass.这么一道小题做了一下午。。。真是太令我伤心了。我的想法是 先找到开始反转的第一个元素的前面的那个元素,标记start。然后一边遍历 一边反转,最后前中后三段...
分类:其他   时间:2014-01-29 14:44:05    收藏:0  评论:0  赞:0  阅读:487
乘法逆元
d模f的乘法逆元int Extend_Eulid(int d,int f){ int x1,x2,x3,y1,y2,y3 ; x1=1,x2=0,x3=f,y1=0,y2=1,y3=d ; while(y3 && y3!=1) { int q=x3/y3 ; int t1,t2,t3 ; t1=x1...
分类:其他   时间:2014-01-29 14:43:15    收藏:0  评论:0  赞:0  阅读:453
[Leetcode]-- Permutation Sequence
Permutation SequenceThe set[1,2,3,…,n]contains a total ofn! unique permutations.By listing and labeling all of the permutations in order,We get the fo...
分类:其他   时间:2014-01-29 14:42:25    收藏:0  评论:0  赞:0  阅读:436
领域驱动
http://www.infoq.com/cn/articles/ddd-in-practice/
分类:其他   时间:2014-01-29 14:41:35    收藏:0  评论:0  赞:0  阅读:382
HDU 1452
http://acm.hdu.edu.cn/showproblem.php?pid=1452原来真心没见过这种题,不会做,非常帅gcd(a,b)==1 && s(a,b)==s(a)*s(b)满足这种条件的s叫做积性函数,本题求的因子和就是一个积性函数接着有一个结论if(prime[p])s(p^n...
分类:其他   时间:2014-01-29 14:40:45    收藏:0  评论:0  赞:0  阅读:458
Decorators for Functions and Methods in python
http://www.python.org/dev/peps/pep-0318http://wiki.woodpecker.org.cn/moin/WeiZhong/DecoratorsInPython24?highlight=%28decorator%29
分类:编程语言   时间:2014-01-29 14:38:15    收藏:0  评论:0  赞:0  阅读:496
http://blog.csdn.net/fjslovejhl/article/category/1544737
http://blog.csdn.net/fjslovejhl/article/category/1544737
分类:Web开发   时间:2014-01-29 14:37:25    收藏:0  评论:0  赞:0  阅读:422
Firefly distributed模块的原理与twisted中PB远程调用协议
这些天断断续续在看Firefly, 看了一下distributed模块的设计,其实就是使用的twisted.spread.pb觉得以后要是想用Firefly有必要了解一下twisted, 所以在网上查了一下资料,更好的资料莫过于官方资料了,官方的例子挺多的,我挑了这一个例子:这里给个官方的例子:se...
分类:其他   时间:2014-01-29 14:36:36    收藏:0  评论:0  赞:0  阅读:570
319条   上一页 1 ... 4 5 6 7 8 ... 16 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!