码迷,mamicode.com
首页 >  
搜索关键字:example 复杂条件查询    ( 17809个结果
汇编语言-显示九九乘法表
1. 题目:以9行9列的形式显示九九乘法表2.要求:显示下三角格式如表4.1所示,也可以上三角格式显示。 1 ; Example assembly language program -- 2 ; Author: Karllen 3 ; Date: revised 05/2014 4 5 ....
分类:编程语言   时间:2014-05-23 09:04:43    阅读次数:304
HDU1003 Max Sum 最大子序列和的问题【四种算法分析+实现】
就拿杭电OJ上的第1003题开始吧,这题比原书要复杂一些。 Problem Description Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7), the max sum...
分类:其他好文   时间:2014-05-22 07:07:27    阅读次数:322
【MongoDB数据库】Java MongoDB CRUD Example
上一篇我们讲了MongoDB 的命令入门初探,本篇blog将基于上一篇blog所建立的数据库和表完成一个简单的Java MongoDB CRUD Example,利用Java连接MongoDB数据库,并实现创建数据库、获取表、遍历表中的对象、对表中对象进行CRUD操作等例程。 1、下载MongoDB Java 支持驱动包 【gitHub下载地址】https://github.com/mon...
分类:数据库   时间:2014-05-22 06:53:47    阅读次数:401
自定义组件
package com.example.ceshi;import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;im...
分类:其他好文   时间:2014-05-22 01:59:09    阅读次数:288
组合组件
package com.example.ceshi;import android.app.Activity;import android.content.Context;import android.opengl.Visibility;import android.util.AttributeSet...
分类:其他好文   时间:2014-05-22 01:55:56    阅读次数:292
Valid Palindrome
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a canal: Pana...
分类:其他好文   时间:2014-05-21 21:20:54    阅读次数:291
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
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
gvim取消自动备份
1、由于gvim是gui部分,需要新建_gvimrc配置文件,在里面加入下面内容即可。setnobackup2、打开vim7x目录下gvimrc_example.vim,修改或者加入下面内容。ifhas(“vms”) setnobackup else #setbackup endif
分类:其他好文   时间:2014-05-20 18:04:38    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!