2019-06-26 15:57:08 +00:00
|
|
|
"""
|
2020-01-18 12:24:33 +00:00
|
|
|
This program print the matrix in spiral form.
|
2019-06-26 15:57:08 +00:00
|
|
|
This problem has been solved through recursive way.
|
|
|
|
|
|
|
|
Matrix must satisfy below conditions
|
|
|
|
i) matrix should be only one or two dimensional
|
|
|
|
ii)column of all the row should be equal
|
|
|
|
"""
|
2019-10-05 05:14:13 +00:00
|
|
|
|
|
|
|
|
2019-06-26 15:57:08 +00:00
|
|
|
def checkMatrix(a):
|
|
|
|
# must be
|
|
|
|
if type(a) == list and len(a) > 0:
|
|
|
|
if type(a[0]) == list:
|
|
|
|
prevLen = 0
|
|
|
|
for i in a:
|
|
|
|
if prevLen == 0:
|
|
|
|
prevLen = len(i)
|
|
|
|
result = True
|
|
|
|
elif prevLen == len(i):
|
|
|
|
result = True
|
|
|
|
else:
|
|
|
|
result = False
|
|
|
|
else:
|
|
|
|
result = True
|
|
|
|
else:
|
|
|
|
result = False
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def spiralPrint(a):
|
|
|
|
|
|
|
|
if checkMatrix(a) and len(a) > 0:
|
|
|
|
|
|
|
|
matRow = len(a)
|
|
|
|
if type(a[0]) == list:
|
|
|
|
matCol = len(a[0])
|
|
|
|
else:
|
|
|
|
for dat in a:
|
|
|
|
print(dat),
|
|
|
|
return
|
|
|
|
|
|
|
|
# horizotal printing increasing
|
|
|
|
for i in range(0, matCol):
|
|
|
|
print(a[0][i]),
|
|
|
|
# vertical printing down
|
|
|
|
for i in range(1, matRow):
|
|
|
|
print(a[i][matCol - 1]),
|
|
|
|
# horizotal printing decreasing
|
|
|
|
if matRow > 1:
|
|
|
|
for i in range(matCol - 2, -1, -1):
|
|
|
|
print(a[matRow - 1][i]),
|
|
|
|
# vertical printing up
|
|
|
|
for i in range(matRow - 2, 0, -1):
|
|
|
|
print(a[i][0]),
|
2019-10-05 05:14:13 +00:00
|
|
|
remainMat = [row[1 : matCol - 1] for row in a[1 : matRow - 1]]
|
2019-06-26 15:57:08 +00:00
|
|
|
if len(remainMat) > 0:
|
|
|
|
spiralPrint(remainMat)
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
print("Not a valid matrix")
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
# driver code
|
2019-10-05 05:14:13 +00:00
|
|
|
a = [[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]]
|
2019-06-26 15:57:08 +00:00
|
|
|
spiralPrint(a)
|