博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
算法导论-MIT笔记
阅读量:6586 次
发布时间:2019-06-24

本文共 736 字,大约阅读时间需要 2 分钟。

第一部分 Analysis of Algorithms

  算法分析是关于计算机程序性能(performance)和资源利用的理论研究

1 What's more important than performance?

|-Correctness正确性

|-Simplicity简洁性

|-Maintainability可维护性

|-Robustness鲁棒性

|-Features(Functionality、Modularity)

|-Security

|-Scalability可扩展性

|-User-friendly

2 Problem sorting Time= O(n2)

2.1 Insertion sort

①Running time

|-Depends on input

|-Depends on input size

||-parameterize in input size

-want upper bounds运行时间上界

②Kinds of analysis

|-Worst case(usually)

|-Average case(sometimes)

||-need assumption of statistical distribution of inputs

|-Best case(bogus假象)

③Asymptotic analysis渐近分析

|-忽略依赖于极其的常量

|-关注运行时间的增长growth

-渐近符号(补充)

2.2 Merge sort归并排序 Time=O(nlgn)

-Recursion tree 推导

 

转载于:https://www.cnblogs.com/bingxin/p/6169763.html

你可能感兴趣的文章
微软URLRewriter.dll的url重写的简单使用(实现伪静态)
查看>>
leetcode -- Combination Sum II
查看>>
Navicat for MySQL 使用SSH方式链接远程数据库(二)
查看>>
poj 1274The Perfect Stall
查看>>
HDU 4720 Naive and Silly Muggles (外切圆心)
查看>>
scrapy爬虫框架实例一,爬取自己博客
查看>>
手把手教你通过Thrift 访问ApsaraDB for HBase
查看>>
Vue+webpack+Element 兼容问题总结
查看>>
复杂recyclerView封装库
查看>>
见微知著 —— Redis 字符串内部结构源码分析
查看>>
Command './js-ant' failed to execute
查看>>
阿里云NFS NAS数据保护实战
查看>>
Spring cloud配置客户端
查看>>
Android API中文文档(111) —— MailTo
查看>>
thinkphp 3.2 增加每页显示条数
查看>>
oracle日常简单数据备份与还原
查看>>
Quartz原理
查看>>
控制namenode检查点发生的频率
查看>>
2、递归遍历文件夹下每一个文件
查看>>
解决activity加上Theme.Translucent.NoTitleBar 页面跳转显示桌面
查看>>