码迷,mamicode.com
首页 >  
搜索关键字:servicestack 官方案例 example 要点说明    ( 18087个结果
Leetcode | Palindrome
Valid PalindromeGiven a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a pla...
分类:其他好文   时间:2014-05-12 16:27:07    阅读次数:332
Android ActionBar与ViewPager合用
内容可以左右滑动,因为使用了ViewPager(我这里用了V4包)view_pager_main.xml activitypackage com.example.actionBarTest.actionBarTabViewPager;import android.app.ActionBar;impo...
分类:移动开发   时间:2014-05-12 16:08:41    阅读次数:409
Android ActionBar 关于tab的应用 以及 TabListener的方法详解
actionBar的tab标签应用以及TabListener的方法详解package com.example.actionBarTest.actionBarTab;import android.app.*;import android.os.Bundle;import com.example.act...
分类:移动开发   时间:2014-05-12 15:51:08    阅读次数:457
Android ActionBar下拉选项
package com.example.actionBarTest.actionBarList;import android.app.ActionBar;import android.app.Activity;import android.app.Fragment;import android.os...
分类:移动开发   时间:2014-05-12 15:44:57    阅读次数:398
【LeetCode】Longest Consecutive Sequence
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given[100, 4, 200, 1, 3, 2],The longest ...
分类:其他好文   时间:2014-05-10 20:06:26    阅读次数:404
Leetcode | Sum Root to Leaf Numbers
Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.An example is the root-to-leaf path 1->2->3 which...
分类:其他好文   时间:2014-05-05 23:55:36    阅读次数:407
c# 语句关键字
1. yield它表明一个方法,操作符或者get选择器里会出现迭代。用yield return 同时返回每一个元素, 返回类型必须是IEnumerable, IEnumerable, IEnumerator, or IEnumerator.Example:public static IEnumera...
分类:其他好文   时间:2014-05-02 15:19:03    阅读次数:287
UVA 之401 - Palindromes
A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when the string is read from lef...
分类:其他好文   时间:2014-05-02 10:33:09    阅读次数:332
C# 修饰符
const : 指定字段或者本地变量不能被修改。readonly : 声明一个字段只能在定义的时候赋值或者在构造函数中赋值。( readonly 可以有不同的值,取决于构造函数的值。 const 是一个编译时的常量,readonly是一个运行时的常量,example:public static re...
分类:其他好文   时间:2014-05-02 09:26:05    阅读次数:304
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-02 09:10:46    阅读次数:252
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!