zoukankan      html  css  js  c++  java
  • 团队-象棋游戏-模块开发过程

    # -*- encoding: utf-8 -*-


    def md(l,x):
    a = l.index(x)
    if x == '*' and l[a + 1] != '-':
    k = float(l[a - 1]) * float(l[a + 1])
    elif x == '/' and l[a + 1] != '-':
    k = float(l[a - 1]) / float(l[a + 1])
    elif x == '*' and l[a + 1] == '-':
    k = -(float(l[a - 1]) * float(l[a + 2]))
    elif x == '/' and l[a + 1] == '-':
    k = -(float(l[a - 1]) / float(l[a + 2]))
    del l[a - 1], l[a - 1], l[a - 1]
    l.insert(a - 1, str(k))
    return l

    def fun(s):
    l = re.findall('([d.]+|/|-|+|*)',s)
    sum=0
    while 1:
    if '*' in l and '/' not in l:
    md(l, '*')
    elif '*' not in l and '/' in l:
    md(l, '/')
    elif '*' in l and '/' in l:
    a = l.index('*')
    b = l.index('/')
    if a < b:
    md(l, '*')
    else:
    md(l, '/')
    else:
    if l[0]=='-':
    l[0]=l[0]+l[1]
    del l[1]
    sum += float(l[0])
    for i in range(1, len(l), 2):
    if l[i] == '+' and l[i + 1] != '-':
    sum += float(l[i + 1])
    elif l[i] == '+' and l[i + 1] == '-':
    sum -= float(l[i + 2])
    elif l[i] == '-' and l[i + 1] == '-':
    sum += float(l[i + 2])
    elif l[i] == '-' and l[i + 1] != '-':
    sum -= float(l[i + 1])
    break
    return sum

     实现运算过程

    def calculate(expression):
    ex=[]
    ans=0
    if '(' not in expression:
    ans=fun(expression)
    return ans
    for i in range(len(expression)):
    if expression[i]=='(':
    ex.append(i) 
    elif expression[i]==')': 
    temp=0
    sub=expression[ex[len(ex)-1]+1:i]
    temp=fun(sub)
    expression=expression[0:ex[len(ex)-1]]+str(temp)+expression[i+1:len(expression)+1]
    ex.pop()
    return calculate(expression)

    s='1 - 2 * ( (60-30 +(-40/5+3) * (9-2*5/3 + 7 /3*99/4*2998 +10 * 568/14 )) - (-4*3)/ (16-3*2) )'

    print(1 - 2 * ( (60-30 +(-40/5+3) * (9-2*5/3 + 7 /3*99/4*2998 +10 * 568/14 )) - (-4*3)/ (16-3*2) ))
    s3='3*(4+50)-((100+40)*5/2-3*2*2/4+9)*(((3+4)-4)-4)'                
    print(3*(4+50)-((100+40)*5/2-3*2*2/4+9)*(((3+4)-4)-4))
    print(calculate(s))                                                
    print(calculate(s3))

  • 相关阅读:
    64位内核开发第十二讲,进程监视,ring3跟ring0事件同步.
    64位内核开发第十讲,IRQL中断级别了解
    64位内核开发第九讲,注册表编程.
    64位内核开发第8讲,文件操作.以及删除文件.
    64位内核第七讲.内核中字符串编程注意事项
    【Unity】7.5 移动设备输入
    【Unity】7.4 游戏外设输入
    【Unity】7.3 键盘输入
    【Unity】7.2 鼠标输入
    【Unity】7.1 Input类的方法和变量
  • 原文地址:https://www.cnblogs.com/1501193636anqila/p/7775103.html
Copyright © 2011-2022 走看看