鱼C论坛

 找回密码
 立即注册
查看: 560|回复: 3

[已解决]20课的课后作业第二题

[复制链接]
发表于 2020-2-10 17:38:05 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
有没有大师能够为我讲解下小甲鱼的代码和我的代码的优缺点,对完答案后把我看懵了,完全没理解小甲鱼为啥能写这么多?

在此先提前感谢各位回答的鱼友了

这个是题目:
请用已学过的知识编写程序,找出小甲鱼藏在下边这个长字符串中的密码,密码的埋藏点符合以下规律:
    a) 每位密码为单个小写字母
    b) 每位密码的左右两边均有且只有三个大写字母

这个是我的(str1没加,太长了):
lenth = len(str1)
for i in range(lenth-3):
    if str1[i].islower():
        if str1[i-3].isupper() and str1[i-2].isupper() and str1[i-1].isupper()and not str1[i-4].isupper():
            if  str1[i+1].isupper() and str1[i+2].isupper() and str1[i+3].isupper() and not str1[i+4].isupper():
                print(str1[i],end='')

这个是小甲鱼的:
str1 = '''ABSaDKSbRIHcRHGcdDIF'''

countA = 0  # 统计前边的大写字母
countB = 0  # 统计小写字母
countC = 0  # 统计后边的大写字母
length = len(str1)

for i in range(length):
    if str1[i] == '\n':
        continue

    """
    |如果str1[i]是大写字母:
    |-- 如果已经出现小写字母:
    |-- -- 统计后边的大写字母
    |-- 如果未出现小写字母:
    |-- -- 清空后边大写字母的统计
    |-- -- 统计前边的大写字母
    """
    if str1[i].isupper():
        if countB:
            countC += 1
        else:
            countC = 0
            countA += 1

    """
    |如果str1[i]是小写字母:
    |-- 如果小写字母前边不是三个大写字母(不符合条件):
    |-- -- 清空所有记录,重新统计
    |-- 如果小写字母前边是三个大写字母(符合条件):
    |-- -- 如果已经存在小写字母:
    |-- -- -- 清空所有记录,重新统计(出现两个小写字母)
    |-- -- 如果该小写字母是唯一的:
    |-- -- -- countB记录出现小写字母,准备开始统计countC
    """
    if str1[i].islower():
        if countA != 3:
            countA = 0
            countB = 0
            countC = 0
        else: 
            if countB:
                countA = 0
                countB = 0
                countC = 0
            else:
                countB = 1
                countC = 0
                target = i

    """
    |如果前边和后边都是三个大写字母:
    |-- 如果后边第四个字母也是大写字母(不符合条件):
    |-- -- 清空记录B和C,重新统计
    |-- 如果后边仅有三个大写字母(符合所有条件):
    |-- -- 打印结果,并清空所有记录,进入下一轮统计
    """
    if countA == 3 and countC == 3:
        if i+1 != length and str1[i+1].isupper():
            countB = 0
            countC = 0
        else:
            print(str1[target], end='')
            countA = 3
            countB = 0
            countC = 0
最佳答案
2020-2-10 17:41:50
如果第一位就是小写呢,它前面的你咋断
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-2-10 17:41:50 From FishC Mobile | 显示全部楼层    本楼为最佳答案   
如果第一位就是小写呢,它前面的你咋断
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-2-10 18:34:10 | 显示全部楼层
wp231957 发表于 2020-2-10 17:41
如果第一位就是小写呢,它前面的你咋断

感谢回答,如果第一位小写会判断负号位,但是如果恰好遇到负号位出现满足条件时会有BUG
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-7 17:34:26 | 显示全部楼层
wp231957 发表于 2020-2-10 17:41
如果第一位就是小写呢,它前面的你咋断

可是前三位和后三位根本不用判断啊

两个要求必须同时满足,要想满足第二个条件,第一位密码最早从第四位开始,所以只要判定前三位是不是大写就好了
string = 'ABSaDKSbRIHcRHGcdDIF'
list1 = list(string)
length = len(string)
for i in range(3,length-3):
    if (list1[i]).islower():
        l1 = list1[i-1]
        l2 = list1[i-2]
        l3 = list1[i-3]
        r1 = list1[i+1]
        r2 = list1[i+2]
        r3 = list1[i+3]
        if i != 3 and i != length-4:
            l4 = list1[i-4]
            r4 = list1[i+4]       
            if l1.isupper() and l2.isupper() and l3.isupper() and r1.isupper() and r2.isupper() and r3.isupper():
                a = l4.isupper()
                b = r4.isupper()
                if a == False and b == False:
                    print(list1[i],end='')
        else :
            if l1.isupper() and l2.isupper() and l3.isupper() and r1.isupper() and r2.isupper() and r3.isupper():
                print(list1[i],end='')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 02:31

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表