码迷,mamicode.com
首页 >  
搜索关键字:simple example    ( 24106个结果
C# Community Projects
Community Supported C# Drivers See the officially supported MongoDB C# driver mongodb-csharp driver simple-mongodb driver NoRM Tools MongoDB.Emitter D...
分类:其他好文   时间:2014-05-21 20:30:58    阅读次数:289
【Leetcode】Reverse Linked List II
Reverse a linked list from positionmton. Do it in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m= 2 andn= 4,return1->4->3->2->5->NULL.No...
分类:其他好文   时间:2014-05-21 19:08:08    阅读次数:195
Linux下GrADS的安装
安装环境:Fedora16,用户名guge软件包:grads-2.0.1-bin-i686-pc-linux-gnu.tar.gz(grads主程序), data2.tar.gz(grads自带字体、地图包), example.tar.Z(样例测试包)(以上软件包从http://www.iges.....
分类:系统相关   时间:2014-05-21 18:11:08    阅读次数:412
【Leetcode】Remove Duplicates from Sorted List II
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->2->3-...
分类:其他好文   时间:2014-05-21 17:51:09    阅读次数:190
LeetCode: First Missing Positive [040]
【题目】 Given an unsorted integer array, find the first missing positive integer. For example, Given [1,2,0] return 3, and [3,4,-1,1] return 2. Your algorithm should run in O(n) time and uses constant space. 【题意】 给定一个数组,找出第一个缺失的正数。时间复杂度O(n) ...
分类:其他好文   时间:2014-05-21 17:13:07    阅读次数:219
poj 3070 Fibonacci(矩阵快速幂)
Description In the Fibonacci integer sequence, F0 = 0, F1 = 1, and Fn = Fn ? 1 + Fn ? 2 for n ≥ 2. For example, the first ten terms of the Fibonacci sequence are: 0, 1, 1, 2, 3, 5, 8, 13, 21, ...
分类:其他好文   时间:2014-05-21 09:39:15    阅读次数:231
Leetcode:Reverse Linked List II 单链表区间范围内逆置
Reverse a linked list from position m to n. Do it in-place and in one-pass. For example: Given 1->2->3->4->5->NULL, m = 2 and n = 4, return 1->4->3->2->5->NULL. Note: Given m, n satisfy the fol...
分类:其他好文   时间:2014-05-21 07:18:02    阅读次数:301
LeetCode: Trapping Rain Water [041]
【题目】 Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining. For example, Given [0,1,0,2,1,0,1,3,2,1,2,1], return 6. The above elevation map is represente...
分类:移动开发   时间:2014-05-21 06:44:38    阅读次数:359
Simple XML
官网:http://simple.sourceforge.net/home.php截止目前最新版本:simple-xml-2.7.1.jar特点:jar lib文件只有360K左右的大小它的使用不需要依赖于其他 JAR 文件通过注解的方式,灵活方便下面将分节详细介绍Simple的特点和使用方法:[一...
分类:其他好文   时间:2014-05-21 04:35:48    阅读次数:376
poj 1330 Nearest Common Ancestors
DescriptionA rooted tree is a well-known data structure in computer science and engineering. An example is shown below:In the figure, each node is lab...
分类:其他好文   时间:2014-05-21 03:23:51    阅读次数:296
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!