码迷,mamicode.com
首页 > 其他好文
孤独的走过年轻
秋凉叶落是自然的规律,它就像一架古老的摆钟往复着既定的路线,不快不慢;我在这和谐的大自然里度过每一天、每一个季节一年又一年。静坐时想起以前觉得自己的过去平平淡淡静的像一潭死水,现在依然平凡——一名.NET程序员。 慢慢的觉得需要经历的事情会越来越多,这对大部分年轻人来说都倍感压力,面对未知...
分类:其他好文   时间:2014-11-17 09:10:36    阅读次数:265
Leetcode-Jump Game II
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:其他好文   时间:2014-11-17 09:11:26    阅读次数:235
[Leetcode] Insertion Sort List
Sort a linked list using insertion sort.Solution: 1 /** 2 * Definition for singly-linked list. 3 * public class ListNode { 4 * int val; 5 * ...
分类:其他好文   时间:2014-11-17 09:11:05    阅读次数:218
输出txt文本
SaveFileDialog sfd = new SaveFileDialog();sfd.Filter = "文本文件 (*.txt)|*.txt|所有文件 (*.*)|*.*";if(sfd.ShowDialog() == DialogResult.Cancel) return;bool...
分类:其他好文   时间:2014-11-17 09:09:32    阅读次数:328
DesignPattern_Creational_Singleton
void Main(){ object.ReferenceEquals(Singleton.GetInstance(),Singleton.GetInstance()).Dump(); object.ReferenceEquals(NSingleton.Instance,NSinglet...
分类:其他好文   时间:2014-11-17 09:09:43    阅读次数:174
Ruby on Rails 学习笔记 - 3 Static Page
1. Gemfilesource 'https://rubygems.org'gem 'rails', '4.2.0.beta4'gem 'sass-rails', '5.0.0.beta1'gem 'uglifier', '...
分类:其他好文   时间:2014-11-17 09:08:50    阅读次数:175
tooltips插件
摘要: 继‘带箭头提示框’,本文将分享几款带箭头提示框。qtipqTip是一种先进的提示插件,基于jQuery框架。以用户友好,而且功能丰富,qTip为您提供不一般的功能,如圆角和语音气泡提示,并且最重要的是免费。支持ie6+以及其他主流浏览器grumble.jsgrumble.js提供了特殊的提....
分类:其他好文   时间:2014-11-17 09:10:40    阅读次数:270
Cipe Coding Summary Part1
1. Colorful Number:A numbercan be broken into different sub-sequence parts. Suppose a number 3245 can bebroken into parts like 3 2 4 5 32 24 45 324 24...
分类:其他好文   时间:2014-11-17 09:08:40    阅读次数:401
arcgis for flex map遮罩
效果1:map的遮罩(对整个map进行遮罩)效果2:对某个图层进行遮罩
分类:其他好文   时间:2014-11-17 09:09:47    阅读次数:222
DesignPattern_Creational_FactoryMethod
void Main(){ Factory.ChooseFactory("A").GetProduct().Dump(); Factory.ChooseFactory("B").GetProduct().Dump();}class Product{}class ProductA:Produ...
分类:其他好文   时间:2014-11-17 09:07:36    阅读次数:254
OSChina 周一乱弹 —— 薯哥儿,你约吗?
周一了,周末大家都去哪儿了? @iconsider ?:嗯,开源农庄 吃了啥? @blu10ph ?:论泡面杯的正确使用姿势~ 干了啥?不会去卖银了吧? @blindcat ?: 接到一江西吉安电话:“先生您好,我们是贵重金属交易所的,...
分类:其他好文   时间:2014-11-17 08:07:55    阅读次数:370
[Leetcode] Merge k Sorted Lists
Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.Solution 1:PriorityQueue: 1 /** 2 * Definition for si....
分类:其他好文   时间:2014-11-17 08:04:09    阅读次数:176
重画GoogleClusterTrace数据
由于项目计划书写作需要,重画了Qi Zhang, Mohamed Faten Zhani, Raouf Boutaba, Joseph L. Hellerstein,Dynamic Heterogeneity-Aware Resource Provisioning in the Cloud. IEE...
分类:其他好文   时间:2014-11-17 08:06:27    阅读次数:477
杭电 2035 人见人爱A^B【同余】
#includeint main(){int a,b;int s;int i;while(scanf("%d %d",&a,&b)!=EOF&&a&&b){ s=1; for(i=1;i<=b;i++) { s*=a%1000; s=s%1000; } p...
分类:其他好文   时间:2014-11-17 08:05:59    阅读次数:171
Leetcode-Jump Game
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:其他好文   时间:2014-11-17 08:06:17    阅读次数:210
不眠夜
早上醒的早,或许3点多。因为钱的关系,压力比较大。思考了下工作,人生,过往,将来。1. 选择狠重要? 今天付出的汗水和泪水,是当初专业的时候脑袋进的水? .net -> 农民工? java -> 高富帅? 非也,某超同学选的java,因为工作找不到的关系(万恶的天朝人,一毕业就...
分类:其他好文   时间:2014-11-17 08:04:16    阅读次数:174
Grep 和 Egrep 使用细解
Grep想说爱你不容易grep:GlobalsearchREgularexpressionandPrintouttheline文本搜索工具:根据用户指定的“模式(pattern)”对目标文本进行过滤,显示被模式匹配到的行。用法:grep[OPTION]...‘PATTERN‘FILE...grep--color自动执行着色正则表达式:是由一类字符书写的模式,其..
分类:其他好文   时间:2014-11-17 07:02:19    阅读次数:366
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!