码迷,mamicode.com
首页 > 2015年03月13日 > 全部分享
ubuntu 14.04 安装Node
sudo?apt-get?install?nodejs sudo?apt-get?install?npm sudo?apt-get?install?nodejs-legacy sudo?add-apt-repository?ppa:chris-lea/node.js sudo?apt-get?update sudo?apt-get?install?pytho...
分类:系统相关   时间:2015-03-13 23:53:07    阅读次数:456
LeetCode-Word Break
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words. For example, given s = "leetcode", dict = ["leet"...
分类:其他好文   时间:2015-03-13 23:53:03    阅读次数:403
1021. Deepest Root (25) 并查集&&DFS
1021. Deepest Root (25) 时间限制 1500 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A graph which is connected and acyclic can be considered a tree. The height of the tree depend...
分类:其他好文   时间:2015-03-13 23:51:52    阅读次数:430
使用Search查询Office 365 Groups
原文地址 我已经使用新的Office 365 Groups 功能有一段时间了,我想看看我在普通的SharePoint Online site怎么使用它们。我今天的例子里,我创建了两个 public groups 和三个private groups。 我第一个想法是使用Search。 因为我知道,group在后台,是由site collection来存储的。我只是要查找到,它...
分类:其他好文   时间:2015-03-13 23:50:31    阅读次数:421
unity3D中Socket链接与服务之间的通讯测试程序
Client.js: 1 var net=require('net');    2 var client=net.connect({port:8124,host:'127.0.0.1'},function(){       3     console.log('Success');       4     client.write('world');       5     ...
分类:编程语言   时间:2015-03-13 23:52:10    阅读次数:473
算法基础:分治模式,归并排序ΘΘΘΘΘΘ知识小结
分治模式在每层递归时都有三个步骤:分解,解决,合并归并排序算法完全遵循分治模式:分解:分解待排序的n个元素的序列成各具n/2个元素的两个子序列解决:使用归并排序递归的排序两个子序列合并:合并两个已排序的子序列以产生已排序的答案分析分治算法所需要的时间计算: 假设T(n)是规模为n的一个问题的运行时间,若问题足够小,如对某个常量c,n≦c,则直接求解需要常量时将,我们将其写作Θ(1).假设吧原问题...
分类:编程语言   时间:2015-03-13 23:50:31    阅读次数:438
Opengl绘制计算几何库CGAL三角剖分结果的Demo
Ubuntu下改编了一个用CGAL计算输入点的三角剖分,并用OpenGL显示结果的C++程序。 该Demo可作为一个计算几何及绘图的框架。...
分类:其他好文   时间:2015-03-13 23:50:03    阅读次数:654
1185 特殊排序
/* 使用快排实现 题目描述: 输入一系列整数,将其中最大的数挑出,并将剩下的数进行排序。 输入: 输入第一行包括1个整数N,1<=N<=1000,代表输入数据的个数。 接下来的一行有N个整数。 输出: 可能有多组测试数据,对于每组数据, 第一行输出一个整数,代表N个整数中的最大值,并将此值从数组中去除,将剩下的数进行排序。 第二行将排序的结果输出。 样例输入: 4 1 3 4 2 样例输出:...
分类:编程语言   时间:2015-03-13 23:49:42    阅读次数:421
VELT-0.1.6开发:在VS2013下用QEMU调试x86 Linux内核
接下来使用QEMU来调试x86内核。它的基本原理是使用QEMU虚拟一个x86的机器,打开gdbserver接口,再用gdb通过网络连接到此接口上进行调试。...
分类:系统相关   时间:2015-03-13 23:49:42    阅读次数:637
PHP利用GD库画图和生成验证码图片
首先得确定php.ini设置有没有打开GD扩展功能,测试如下 print_r(gd_info()); 如果有打印出内容如下,则说明GD功能有打开: Array ( [GD Version] => bundled (2.0.34 compatible) [FreeType Support] => 1 [FreeType Linkage] => with freetype...
分类:Web程序   时间:2015-03-13 23:50:59    阅读次数:416
一起学android之利用回调函数onCreateDialog实现加载对话框(23)
效果图: 有时候我们需要去做一个Activity启动时的数据加载对话框,关于对话框的各种实现可以通过一起学android之对话框 Dialog的创建(7)来完成,在这里另外介绍一个,利用onCreateDialog回调方法来实现,当然这个方法标记已经过 时了,但我们还是可以使用这个方法来实现我们想要的功能。具体请参看代码: public class...
分类:移动开发   时间:2015-03-13 23:50:06    阅读次数:395
PE文件结构与函数导出表——详解与实例
随着windows系统从Xp升级到Win7、Win8, 从32位升级到64位,PE文件结构在整体未变的情况下发生了一些小的变动,一方面是推荐的程序装载地址未采用,另一方面,导出函数序号不再是简单的升序,而是一定程度上的进行了乱序。本文首先对PE文件结构进行了详尽的解说,接着介绍了如何得出函数导出表,整个过程采用SysWoW64目录下的wininet.dll实例进行说明。在介绍过程中,明确指出了Win7、Win8等新系统相对Xp带来的区别。...
分类:其他好文   时间:2015-03-13 23:49:06    阅读次数:427
用 memcached 实现 Tornado 的 session 支持(一)
意在详细剖析 tornado-memcached-sessions,告诉你 session 怎么来...
分类:系统相关   时间:2015-03-13 23:49:17    阅读次数:523
CodeForces 388A Fox and Box Accumulation 贪心
Fox Ciel has n boxes in her room. They have the same size and weight, but they might have different strength. The i-th box can hold at most xi boxes on its top (we’ll call xi the strength of the box).S...
分类:其他好文   时间:2015-03-13 23:51:34    阅读次数:384
1054 字符串内排序
/* 题目描述: 输入一个字符串,长度小于等于200,然后将输出按字符顺序升序排序后的字符串。 输入: 测试数据有多组,输入字符串。 输出: 对于每组输入,输出处理后的结果。 样例输入: bacd 样例输出: abcd */ # include # include int main(void) { int len,i,j; char s[210],temp; while(scanf("...
分类:编程语言   时间:2015-03-13 23:49:17    阅读次数:321
[LeetCode]Maximum Product Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest product. For example, given the array [2,3,-2,4], the contiguous subarray [2,3] has th...
分类:其他好文   时间:2015-03-13 23:49:17    阅读次数:249
CodeForces 277A Learning Languages 并查集
The “BerCorp” company has got n employees. These employees can use m approved official languages for the formal correspondence. The languages are numbered with integers from 1 to m. For each employee w...
分类:其他好文   时间:2015-03-13 23:51:13    阅读次数:447
2225条   1 2 3 4 5 6 ... 131 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!