开发者

Suggestions for algorithmic analysis of Lisp programs?

开发者 https://www.devze.com 2022-12-21 22:33 出处:网络
Which operations in Common Lisp programs are to be considered sufficiently primitive so as to count for a single \"step\" in algorithmic analysis?How widely do modern lisps vary in their implementatio

Which operations in Common Lisp programs are to be considered sufficiently primitive so as to count for a single "step" in algorithmic analysis? How widely do modern lisps vary in their implementation?

Certainly arithmetic with small integers would count as a single step, but what about larger numbers? An开发者_开发百科d what about considering the difference between reverse and nreverse? Specifically, is nreverse theta of reverse? What about all of the array and sequence operations? Also, how do macros figure in - how should I think about macros when analyzing complexity?


  • Don't try to find a bottom layer of uniform “single steps”, just know what's O(1) and what's not.
  • Addition of "larger numbers" (bignums) should be O(log n) where n is the larger of the integers. There are many different algorithms for multiplication; I'm not an expert in the field, and this is likely to be implementation specific.
  • reverse and nreverse can both be implemented O(n) (reverse by a cdr-input-and-cons-output strategy; nreverse by exchanging pointers while cdring). If I understand the unfamiliar term “theta of” correctly, then yes. Note, however, that the CL standard does not make any guarantees about time complexity.
  • Built-in sequence operations are generally implemented by choosing an array- or list-specific implementation depending on the type of the argument, and so should be expected to be the ordinary efficient algorithm for that data type.
  • Macros merely expand into other code. You can look at their expansion, or see what they're documented to do, or make an educated guess about the algorithm their expansion uses. The complexity of the macroexpander is completely irrelevant (unless you're using eval/compile, in which case you have to think about the complexity of the implementation's compiler as well) since it runs at compile time, once; only the expanded code matters.
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号