循环展开不仅在编译原理中有涉及到,笔者记得在CSAPP里面也提到了这种优化方法。
话不多说,我们先来看个例子。
int loop(int a)
{int result 0;for(int i 0; i < a; i){result i;}return result;
}int loop1(int a)
{int result 0;int len a/2…
《自动机理论、语言和计算导论》学习第 6 天,p115-p138 总结,总计 24 页。
一、技术总结
1.associativity and comutativity
(1)commutativity(交换性): Commutativity is the property of an operator that says we can switch the order of its ope…