胖总可以吃的自助餐

# $language = "Python"
# $interface = "1.0"

# Connect to a telnet server and automate the initial login sequence.
# Note that synchronous mode is enabled to prevent server output from
# potentially being missed.
def my_backshape(n):
  x_director = [0,1,0,-1]
  y_director = [1,0,-1,0]
  i = 0
  j = -1
  flag = 0
  result = 0
  matrix = [[0 for col in range(n)] for row in range(n)]

  while (flag == 0):
    flag = 1
    for k in range(0,4):
      temp_x = i + x_director[k]
      temp_y = j + y_director[k]
      while(matrix[temp_x][temp_y]==0 and temp_x<n and temp_y<n and temp_x>-1 and temp_y>-1):
        matrix[temp_x][temp_y] = result
        result = result + 1
        flag = 0
        i = temp_x
        j = temp_x
        temp_x = temp_x + x_director[k]
        temp_y = temp_y + y_director[k]
        print result,
      print " "

my_backshape(4)

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值