码迷,mamicode.com
首页 >  
搜索关键字:example    ( 17798个结果
LeetCode:Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your ...
分类:其他好文   时间:2014-06-29 14:39:10    阅读次数:268
Unity3D除了在编辑器里,怎么用代码给一个Texture类型的变量赋值
resource.load上来一张贴图就行。  详细可参看:unity圣典 “Resources 资源”、“Resources.Load 加载”相关篇幅介绍。using UnityEngine;using System.Collections;public class example : MonoB...
分类:其他好文   时间:2014-06-29 14:24:46    阅读次数:261
Generate Parentheses
Givennpairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, givenn= 3, a solution set is:"((()))...
分类:其他好文   时间:2014-06-04 22:30:30    阅读次数:418
Merge Intervals
Given a collection of intervals, merge all overlapping intervals.For example,Given[1,3],[2,6],[8,10],[15,18],return[1,6],[8,10],[15,18]./***Definition...
分类:其他好文   时间:2014-06-04 20:45:31    阅读次数:201
Rotate List
Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL./***D...
分类:其他好文   时间:2014-06-04 20:44:57    阅读次数:227
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-06-04 20:19:49    阅读次数:282
CommonJS规范(转)
概述CommonJS是服务器端模块的规范,Node.js采用了这个规范。根据CommonJS规范,一个单独的文件就是一个模块。加载模块使用require方法,该方法读取一个文件并执行,最后返回文件内部的exports对象。下面就是一个简单的模块文件example.js。console.log("ev...
分类:Web程序   时间:2014-05-30 11:10:16    阅读次数:337
leetcode -- Add Binary
Given two binary strings, return their sum (also a binary string).For example,a ="11"b ="1"Return"100".class Solution {public: string addBinary(str...
分类:其他好文   时间:2014-05-30 08:39:11    阅读次数:270
LINQ语句中的.AsEnumerable() 和 .AsQueryable()的区别【转】
在写LINQ语句的时候,往往会看到.AsEnumerable() 和 .AsQueryable() 。例如:string strcon ="Data Source=.\\SQLEXPRESS;Initial Catalog=Db_Example;Persist Security Info=True;...
分类:其他好文   时间:2014-05-28 16:07:41    阅读次数:418
Swing实现文件选择(目录选择)附导出
具体生成工具如图:(1)(2)(3)(4)源码 :example.java[java]view plaincopyprint?packageorg.qiailin.jframe;importjava.awt.Container;importjava.awt.Point;importjava.awt....
分类:Windows程序   时间:2014-05-28 11:21:13    阅读次数:425
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!