码迷,mamicode.com
首页 >  
搜索关键字:complexity    ( 1097个结果
First Position of Target
For a given sorted array (ascending order) and a target number, find the first index of this number in O(log n) time complexity. If the target number ...
分类:其他好文   时间:2016-07-04 06:30:31    阅读次数:169
Sort List
Sort a linked list in O(n log n) time using constant space complexity. Example Given 1->3->2->null, sort it to 1->2->3->null. Merge Sort version 1 /** ...
分类:其他好文   时间:2016-07-03 11:39:05    阅读次数:163
C++: Virtual Table and Shared Memory
See at:补充栏3: C++对象和共享内存 (叙述内容和Link1的内容基本一致) 《C++网络编程 卷1:运用ACE和模式消除复杂性》 《C++ Network Programming Volume 1 Mastering Complexity with ACE and Patterns》 - ...
分类:编程语言   时间:2016-07-01 22:45:05    阅读次数:152
OOP: One pont of view of OOP与基于算法设计的区别
..摘自《C++网络编程 卷1:运用ACE和模式消除复杂性》 《C++ Network Programming Volume 1 Mastering Complexity with ACE and Patterns》 -Douglas C.Schmidt, Stephen D. Huston -叶斌 ...
分类:编程语言   时间:2016-06-30 20:06:59    阅读次数:211
LeetCode Problem 4.Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity sh ...
分类:其他好文   时间:2016-06-26 15:14:14    阅读次数:115
4. Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity sh ...
分类:其他好文   时间:2016-06-25 14:58:33    阅读次数:101
4. Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity sh ...
分类:其他好文   时间:2016-06-23 22:22:31    阅读次数:163
软件设计的复杂度
http://blog.csdn.net/horkychen/article/details/45381743 什么是软件设计的复杂度 软件技术发展的使命之一就是控制复杂度(Complexity)。从高级语言的产生,到结构化编程,再到面向对象编程、组件化编程等等。关于复杂度的定义并不一致,想要详细了 ...
分类:其他好文   时间:2016-06-17 00:39:16    阅读次数:210
DDD(Domain Driver Designer) 领域驱动设计简介
领域驱动设计之领域模型 加一个导航,关于如何设计聚合的详细思考,见这篇文章。 2004年Eric Evans 发表Domain-Driven Design –Tackling Complexity in the Heart of Software (领域驱动设计),简称Evans DDD。领域驱动设 ...
分类:其他好文   时间:2016-06-16 17:33:38    阅读次数:289
[LeetCode] Median of Two Sorted Arrays 解题报告
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity sh ...
分类:其他好文   时间:2016-06-13 18:52:13    阅读次数:226
1097条   上一页 1 ... 28 29 30 31 32 ... 110 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!