材料来源:http://blog.csdn.net/wzb56/article/details/7475001
Given an integer number N(n = m^2 - 1),
print sequence 0, 1, 2, 3, ..., n,in below form.
You can only use printf(C) or cout(C++).
For example, given n = 24(5^2 - 1), the program should output
0 1 2 3 4
15 16 17 18 5
14 23 24 19 6
13 22 21 20 7
12 11 10 9 8
1. What memory & computation complexity of your algorithm?
//你的算法的时间和空间的复杂度?
2. Is there an algorithm to get O(1) of memory and O(n) of computation complexity
//有没有空间复杂度为O(1),而时间复杂度为O(n)的算法?
=====================================================================================
我的想法是:
对于(i,j),先确定属于哪一个序列层,算法为求i与上下边界,j与左右边界的距离up(i),down(i),left(j),right(j),取最小值来确定位于那一层(每一圈是一层);然后依据up(i),down(i),left(j),right(j),可以判断该点所处的相对几何位置——上下左右哪一个子序列;从而根据每一层的起始位开始计数,则该点的值可求。
由于每个点的值的求解是常数时间,所以整体的时间复杂度是Omega(n)。