码迷,mamicode.com
首页 >  
搜索关键字:lists    ( 2473个结果
【AutoMapper官方文档】DTO与Domin Model相互转换(上)
前言Flattening-复杂到简单Projection-简单到复杂Configuration Validation-配置验证Lists and Array-集合和数组Nested mappings-嵌套映射后记 上一篇《【道德经】漫谈实体、对象、DTO及AutoMapper的使用》,因为内容写的....
分类:移动开发   时间:2014-07-22 23:06:12    阅读次数:724
关于luajit的bytecode模式
最近把android下的Lua换成了Luajit,并且使用了bytecode,后来发现某些品牌的手机崩溃的比较多,于是怀疑是不是luajit的问题,所以就对Luajit的bytecode模式做了点调研,我们先来看一下-b参数的说明 -b[options] input output This option saves or lists bytecode. The followin...
分类:其他好文   时间:2014-07-22 23:05:16    阅读次数:676
Leetcode | Merge k Sorted Lists
Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.想法很简单,就是两两合并。在Merge Two Sorted Lists这道题已经实现了两两合并的代码了,就...
分类:其他好文   时间:2014-05-06 00:22:01    阅读次数:337
jQuery -> Callbacks
Callbacks 是jQuery 1.7之后新加的一个工具,用于管理callback lists(函数数组)作为码农,经常被灌输这样的逻辑:真正厉害的不是写多么复杂的代码,而是写简单易懂的代码。不明就里的人则会把她作为衡量代码质量的准则,并抓住每一个抱怨的机会说道,“这代码真复杂,是给人看的吗!”...
分类:Web程序   时间:2014-05-04 12:28:07    阅读次数:355
leetcode__Add Two Numbers && Climbing Stairs
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:其他好文   时间:2014-05-01 22:08:19    阅读次数:366
SharePoint中删除列表记录
方法1(快速,以理解,可以封装):SPList spListQuestion = spWeb.Lists["Question List"];for (int i = spListQuestion.Items.Count - 1; i >= 0; i--){ spListQuestion.Ite...
分类:其他好文   时间:2014-05-01 21:01:37    阅读次数:448
Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2014-05-01 20:18:54    阅读次数:425
SharePoint列表数据展现方法
方法1:Guid guid = new Guid ("{8238B046-EC5F-46B6-8E18-028F77EC2620}");SPSite Asite = new SPSite ("http://mosslt/");SPList list = Asite.RootWeb.Lists[gui...
分类:其他好文   时间:2014-05-01 18:38:35    阅读次数:290
problem-whether two headless linked lists cross
whether two nohead-linkedlist have the same end 个人信息:就读于燕大本科软件工程专业 目前大三; 本人博客:google搜索“cqs_2012”即可; 个人爱好:酷爱数据结构和算法,希望将来从事算法工作为人民作出自己的贡献; 博客内容:在无头节点的链表里删除元素; 博客时间:2014-4-15; 编程语言:C+...
分类:其他好文   时间:2014-05-01 18:13:31    阅读次数:352
leetcode__Merge k Sorted Lists
Merge k Sorted Lists  Total Accepted: 9746 Total Submissions: 41674My Submissions Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity....
分类:其他好文   时间:2014-05-01 17:11:32    阅读次数:234
2473条   上一页 1 ... 245 246 247 248 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!