博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Exponential-time Algorithm
阅读量:4594 次
发布时间:2019-06-09

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

Exponential-time Algorithm in Technology

complexity

An algorithm (or Turing Machine) that is guaranteed to terminate within a number of steps which is a exponential function of the size of the problem. For example, if you have to check every number of n digits to find a solution, the complexity is O(10^n), and if you add an extra digit, you must check ten times as many as numbers.

Even if such an algorithm is practical for some given value of n, it is likely to become impractical for larger values. This is in contrast to a polynomial-time algorithm which grows more slowly.

See also computational complexity, polynomial-time, NP-complete.(1995-04-27)

---- from www.dictionary.com

The concept was found in ZOJ problem 1037.

转载于:https://www.cnblogs.com/conter/p/6857798.html

你可能感兴趣的文章
iptables详解
查看>>
HRBUST 1376 能量项链
查看>>
Thread类的使用
查看>>
Unity-NGUI UILabel换行
查看>>
L1-027 出租
查看>>
刷题总结——蚯蚓(NOIP2016DAY2T2)
查看>>
idea @Override is not allowed when implementing interface method
查看>>
javaScript常用知识点有哪些
查看>>
OpenCV调用摄像头 , 人脸检测demo
查看>>
大数据的本质
查看>>
你真的无聊透顶么?不见得
查看>>
软工每日总结30
查看>>
策略模式
查看>>
负载均衡中使用 Redis 实现共享 Session
查看>>
[转载]用纯css改变下拉列表select框的默认样式
查看>>
Content-Type boundary 问题
查看>>
Filestream/Windows Share导致Alwayson Failover失败
查看>>
What is State of Art?
查看>>
实验二
查看>>
angularJs项目实战!02:前端的页面分解与组装
查看>>