Python字计数器

时间:2015-01-14 06:36:58

标签: python string python-2.7

我在学校学习Python 2.7课程,他们告诉我们创建以下课程:

  

假设s是一个小写字符串。

     

编写一个程序,打印s中最长的子字符串,其中字母按字母顺序出现。

     

例如,如果s = azcbobobegghakl,那么您的程序应该打印

     

按字母顺序排列的最长子字符串是:beggh

     

在tie的情况下,打印第一个子字符串。

     

例如,如果s =' abcbcd',那么您的程序应该打印

     

按字母顺序排列的最长子字符串是:abc

我写了以下代码:

s = 'czqriqfsqteavw'

string = ''

tempIndex = 0
prev = ''
curr = ''

index = 0
while index < len(s):
    curr = s[index]
    if index != 0:
        if curr < prev:
            if len(s[tempIndex:index]) > len(string):
               string = s[tempIndex:index]
            tempIndex=index
        elif index == len(s)-1:
            if len(s[tempIndex:index]) > len(string):
               string = s[tempIndex:index+1]
    prev = curr
    index += 1

print 'Longest substring in alphabetical order is: ' + string

老师还给了我们一系列测试字符串来尝试:

onyixlsttpmylw  
pdxukpsimdj  
yamcrzwwgquqqrpdxmgltap  
dkaimdoviquyazmojtex  
abcdefghijklmnopqrstuvwxyz  
evyeorezmslyn  
msbprjtwwnb  
laymsbkrprvyuaieitpwpurp  
munifxzwieqbhaymkeol   
lzasroxnpjqhmpr    
evjeewybqpc   
vzpdfwbbwxpxsdpfak    
zyxwvutsrqponmlkjihgfedcba  
vzpdfwbbwxpxsdpfak     
jlgpiprth  
czqriqfsqteavw 

所有这些都很好,除了最后一个,产生以下答案:

  

按字母顺序排列的最长子字符串是:cz

但它应该说:

  

按字母顺序排列的最长子字符串是:avw

我已经检查了一千次代码,没有发现任何错误。你能帮我吗?

5 个答案:

答案 0 :(得分:2)

这些行:

        if len(s[tempIndex:index]) > len(string):
           string = s[tempIndex:index+1]

彼此不同意。如果新的最佳字符串是s[tempIndex:index+1]那么那就是字符串,你应该比较if条件的长度。将它们更改为彼此一致可以解决问题:

        if len(s[tempIndex:index+1]) > len(string):
           string = s[tempIndex:index+1]

答案 1 :(得分:1)

我看到user5402很好地回答了你的问题,但这个特殊问题引起了我的兴趣,所以我决定重新编写代码。 :)下面的程序使用与代码基本相同的逻辑,并进行了一些小的更改。

在实际中避免使用索引并直接遍历字符串(或其他容器对象)的内容被认为更Pythonic。这通常使代码更容易阅读,因为我们不必跟踪索引和内容。

为了获得当前和&amp;字符串中的前一个字符我们将输入字符串的两个副本压缩在一起,其中一个副本通过在开头插入空格字符来抵消。我们还在另一个副本的末尾添加一个空格字符,这样当输入字符串末尾出现最长的有序子序列时,我们就不必进行特殊处理。

#! /usr/bin/env python

''' Find longest ordered substring of a given string 

    From http://stackoverflow.com/q/27937076/4014959
    Written by PM 2Ring 2015.01.14
'''

data = [
    "azcbobobegghakl",
    "abcbcd",
    "onyixlsttpmylw",
    "pdxukpsimdj",
    "yamcrzwwgquqqrpdxmgltap",
    "dkaimdoviquyazmojtex",
    "abcdefghijklmnopqrstuvwxyz",
    "evyeorezmslyn",
    "msbprjtwwnb",
    "laymsbkrprvyuaieitpwpurp",
    "munifxzwieqbhaymkeol",
    "lzasroxnpjqhmpr",
    "evjeewybqpc",
    "vzpdfwbbwxpxsdpfak",
    "zyxwvutsrqponmlkjihgfedcba",
    "vzpdfwbbwxpxsdpfak",
    "jlgpiprth",
    "czqriqfsqteavw",
]


def longest(s):
    ''' Return longest ordered substring of s
        s consists of lower case letters only.
    '''
    found, temp = [], []
    for prev, curr in zip(' ' + s, s + ' '):
        if curr < prev:
            if len(temp) > len(found):
                found = temp[:]
            temp = []
        temp += [curr]
    return ''.join(found)


def main():
    msg = 'Longest substring in alphabetical order is:'
    for s in data:
        print s
        print msg, longest(s)
        print


if __name__ == '__main__':
    main()  

<强>输出

azcbobobegghakl
Longest substring in alphabetical order is: beggh

abcbcd
Longest substring in alphabetical order is: abc

onyixlsttpmylw
Longest substring in alphabetical order is: lstt

pdxukpsimdj
Longest substring in alphabetical order is: kps

yamcrzwwgquqqrpdxmgltap
Longest substring in alphabetical order is: crz

dkaimdoviquyazmojtex
Longest substring in alphabetical order is: iquy

abcdefghijklmnopqrstuvwxyz
Longest substring in alphabetical order is: abcdefghijklmnopqrstuvwxyz

evyeorezmslyn
Longest substring in alphabetical order is: evy

msbprjtwwnb
Longest substring in alphabetical order is: jtww

laymsbkrprvyuaieitpwpurp
Longest substring in alphabetical order is: prvy

munifxzwieqbhaymkeol
Longest substring in alphabetical order is: fxz

lzasroxnpjqhmpr
Longest substring in alphabetical order is: hmpr

evjeewybqpc
Longest substring in alphabetical order is: eewy

vzpdfwbbwxpxsdpfak
Longest substring in alphabetical order is: bbwx

zyxwvutsrqponmlkjihgfedcba
Longest substring in alphabetical order is: z

vzpdfwbbwxpxsdpfak
Longest substring in alphabetical order is: bbwx

jlgpiprth
Longest substring in alphabetical order is: iprt

czqriqfsqteavw
Longest substring in alphabetical order is: avw

答案 2 :(得分:0)

指数是你的朋友。 下面是一个简单的问题代码。

longword = ''

for x in range(len(s)-1):
    for y in range(len(s)+1):
        word = s[x:y]
        if word == ''.join(sorted(word)):
            if len(word) > len(longword):
                longword = word
print ('Longest substring in alphabetical order is: '+ longword)                

答案 3 :(得分:0)

我自己遇到了这个问题,并认为我会分享我的答案。

我的解决方案在100%的时间内有效。

问题是要帮助新的Python程序员理解循环,而不必深入研究其他复杂的解决方案。这部分代码比较扁平,并使用变量名来使新编码员易于阅读。

我添加了注释来解释代码步骤。没有评论,它非常干净而且可读。

s = 'czqriqfsqteavw'

test_char = s[0]
temp_str = str('')
longest_str = str('')

for character in s:

    if temp_str == "":                   # if empty = we are working with a new string
        temp_str += character            # assign first char to temp_str
        longest_str = test_char          # it will be the longest_str for now

    elif character >= test_char[-1]:     # compare each char to the previously stored test_char
        temp_str += character            # add char to temp_str
        test_char = character            # change the test_char to the 'for' looping char

        if len(temp_str) > len(longest_str): # test if temp_char stores the longest found string
            longest_str = temp_str           # if yes, assign to longest_str

    else:
        test_char = character            # DONT SWAP THESE TWO LINES.
        temp_str = test_char             # OR IT WILL NOT WORK.

print("Longest substring in alphabetical order is: {}".format(longest_str))

答案 4 :(得分:0)

我的解决方案类似于Nim J的解决方案,但是迭代次数更少。

res = ""

for n in range(len(s)):
     for i in range(1, len(s)-n+1):
        if list(s[n:n+i]) == sorted(s[n:n+i]):
            if len(list(s[n:n+i])) > len(res):
                res = s[n:n+i]

print("Longest substring in alphabetical order is:", res)