展开字符串中用-压缩的连续小写字母或者数字,不是压缩形式的-不用理会,-没有压缩字符的去除-。
(笔记模板由python脚本于2024年01月21日 18:18:19创建,本篇笔记适合熟悉 p y t h o n python python字符串和列表的coder翻阅)
Python 官网:https://www.python.org/
Free:大咖免费“圣经”教程《 python 完全自学教程》,不仅仅是基础那么简单……
地址:https://lqpybook.readthedocs.io/
??自学并不是什么神秘的东西,一个人一辈子自学的时间总是比在学校学习的时间长,没有老师的时候总是比有老师的时候多。
????????????—— 华罗庚
本文质量分:
CSDN质量分查询入口:http://www.csdn.net/qc
的解题思路
题主的代码
def fillstr(string, p1, p2, p3):
s = [i for i in string]
for i in range(len(s)):
if s[i] == '-' and ord(s[i - 1]) < ord(s[i + 1]):
if (s[i - 1].isdigit() and s[i + 1].isdigit()) or (s[i - 1].isalpha() and s[i + 1].isalpha()):
if p1 != 3:
s[i] = [p2 * chr(x) for x in range(ord(s[i - 1]) + 1, ord(s[i + 1]))]
elif p1 == 3:
s[i] = [p2 * (ord(s[i + 1]) - ord(s[i - 1]) - 1) * '*']
finalstr = [] #在执行下面的函数之前,s里应该被替换的 ‘-’ 都以子列表的形式存储,所以下面的条件语句都只考虑子列表
for i in s:
if isinstance(i, list) and p1 == 2:
i = [j.upper() for j in i]
if isinstance(i, list) and p3 == 1:
finalstr.extend(i)
elif isinstance(i, list) and p3 == 2:
finalstr.extend(i[::-1])
else:
finalstr.append(i)
return ''.join(finalstr)
para_list = [int(i) for i in input().split()]
String = input()
print(fillstr(String, para_list[0], para_list[1], para_list[2]))
??题主说代码运行超时
而没有通过,而在没有时间限制的网站却顺利通过。这说明代码和算法都没毛病,只是应该都可以优化。我看到题主
用了python中不太高效的列表,且全遍历输入字符串,这两者可能都费了点时间。
??(对题主的代码我没作实境调试
,仅仅纯纯的
C
V
CV
CV)
我的审题
解析
缩减
遍历次数而节省时间。我用 * 收集p1、p2、p3三个参数为一个列表p,感觉“紧凑”一些。代码解析
代码运行效果截屏图片
Python代码
if p[0] not in (1, 2, 3) or p[-1] not in (1, 2):
print(f"\n{' p参数错误!':~^35}")
return
elif '-' not in s:
print(f"\n{' 字符串格式错误!':~^32}")
return
代码解析
Python代码
def char(a, b, p):
''' 生成连续字符串 '''
a += 1
if p[0] == 3:
chars = ''.join(['*'*p[1] for i in range(a, b)])
else:
chars = ''.join([chr(i)*p[1] for i in range(a, b)])
if p[-1] == 2:
return chars[::-1]
return chars
代码解析
Python代码
#用str.split('-')拆分字符串,减少遍历次数。
s = s.split('-')
代码解析
Python代码
result = s[0]
for i in range(1, len(s)): # 遍历到倒数第二组子字符串。
a = result[-1] # -前字符。
b = s[i][0] # -后字符
a2, b2 = ord(a), ord(b) # a、b的ASCII码。
if a.isdigit() and b.isdigit() and b > a:
chars = '' if b2-a2==1 else char(a2, b2, p)
elif a.islower() and b.lower() and b > a: # 小写字母可以直接比较大小,实则是比较ASCII编码。
chars = '' if b2-a2==1 else char(a2, b2, p)
else:
chars = '-'
result = ''.join([result, chars, s[i]])
return result
(源码较长,点此跳过源码)
#!/sur/bin/nve python
# coding: utf-8
def fillRange(s, *p): # 用*号收集p1、p2、p3。
# 首先剔除不用展开的情形,省点time。
if p[0] not in (1, 2, 3) or p[-1] not in (1, 2):
print(f"\n{' p参数错误!':~^35}")
return
elif '-' not in s:
print(f"\n{' 字符串格式错误!':~^32}")
return
#用str.split('-')拆分字符串,减少遍历次数。
s = s.split('-')
result = s[0]
for i in range(1, len(s)): # 遍历到倒数第二组子字符串。
a = result[-1] # -前字符。
b = s[i][0] # -后字符
a2, b2 = ord(a), ord(b) # a、b的ASCII码。
if a.isdigit() and b.isdigit() and b > a:
chars = '' if b2-a2==1 else char(a2, b2, p)
elif a.islower() and b.lower() and b > a: # 小写字母可以直接比较大小,实则是比较ASCII编码。
chars = '' if b2-a2==1 else char(a2, b2, p)
else:
chars = '-'
result = ''.join([result, chars, s[i]])
return result
def char(a, b, p):
''' 生成连续字符串 '''
a += 1
if p[0] == 3:
chars = ''.join(['*'*p[1] for i in range(a, b)])
else:
chars = ''.join([chr(i)*p[1] for i in range(a, b)])
if p[-1] == 2:
return chars[::-1]
return chars
if __name__ == '__main__':
s = input(f"\n输入字符串:").strip()
while 1:
p = list(map(int, input(f"输入字p参数(如1 2 1):").strip().split()))
if len(p)==3:
break
print(f"{' 重新输入!':~^35}\n")
print(f"\n输出:{fillRange(s, *p)}")
我的HOT博:
??本次共计收集289篇博文笔记信息,总阅读量44.72w。数据采集于2023年12月11日 23:07:13,用时5分11.8秒。阅读量不小于4.0k的有17篇。
截屏图片
精品文章:
来源:老齐教室
◆ Python 入门指南【Python 3.6.3】
好文力荐:
CSDN实用技巧博文: