码迷,mamicode.com
首页 >  
搜索关键字:analyze    ( 555个结果
【leetcode刷题笔记】Merge k Sorted Lists
Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.题解:最开始用了最naive的方法,每次在k个链表头中找出最小的元素,插入到新链表中。结果果断TLE了。分析...
分类:其他好文   时间:2014-07-23 16:56:31    阅读次数:227
[leetcode]Merge k Sorted Lists
Merge k Sorted ListsMergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.这道题,第一次刷是过了,第二次同样的代码超时了,看来case是在不断...
分类:其他好文   时间:2014-07-22 22:50:32    阅读次数:237
exp导出表不全
使用EXP,IMP把A库中的数据按用户导入B库,也是先在B库建立表空间和对应的用户,导入后无任何报错信息。为了谨慎起见,把两个库的对象进行对比(selectobject_type,count(*)fromdba_objectswhereowner=‘owner_name‘groupbyobject_typeorderbyobject_type),结果真发现问题,A库中..
分类:其他好文   时间:2014-07-21 12:14:35    阅读次数:215
clang static analyze
C++静态检查一般使用cppcheck直接一条cppcheck ./*.{h,cpp,hpp}命令搞定整个项目,最近发现用clang进行代码补全和代码分析更加强大,借助scan-build工具更好的完成整个过程直接使用clang扫描--analyze选项可以直接静态扫描源码--analyzer-.....
分类:其他好文   时间:2014-07-19 16:15:01    阅读次数:230
scan-build static analyze help
USAGE: scan-build [options] [build options]ANALYZER BUILD: checker-275 (2013-05-23 17:38:31)OPTIONS: -analyze-headers Also analyze functions in #i...
分类:其他好文   时间:2014-07-19 16:05:32    阅读次数:296
POJ 2299 Ultra-QuickSort
Ultra-QuickSort Time Limit: 7000MS   Memory Limit: 65536K Total Submissions: 39767   Accepted: 14336 Description In this problem, you have to analyze a particular sorting...
分类:其他好文   时间:2014-07-19 11:18:44    阅读次数:156
bad superblock
http://homepage.smc.edu/morgan_david/cs40/analyze-ext2.htmhttp://blog.csdn.net/lingfengchina/article/details/6740233
分类:其他好文   时间:2014-07-18 13:23:52    阅读次数:204
(java) Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.
1 /** 2 * Definition for singly-linked list. 3 * public class ListNode { 4 * int val; 5 * ListNode next; 6 * ListNode(int x) { 7 * ...
分类:编程语言   时间:2014-07-16 17:45:41    阅读次数:226
[LeetCode] Merge k Sorted Lists
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.#include#includeusing namespace std;struct ListNode ...
分类:其他好文   时间:2014-07-16 15:17:03    阅读次数:188
POJ 2299 Ultra-QuickSort
Ultra-QuickSort Description In this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swapping two adjacent sequence eleme...
分类:其他好文   时间:2014-07-16 09:00:13    阅读次数:240
555条   上一页 1 ... 51 52 53 54 55 56 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!