3

这是一个家庭作业问题,我掌握了基础知识,但我似乎找不到搜索两个并行数组的正确方法。

原始问题:设计一个程序,它有两个并行数组:一个String名为peoplename 的数组用七个人的名字初始化,一个名为 name 的String数组phoneNumbers用你朋友的电话号码初始化。该程序应允许用户输入人名(或人名的一部分)。people然后它应该在数组中搜索那个人。如果找到这个人,它应该从phoneNumbers数组中获取那个人的电话号码并显示它。如果未找到此人,程序应显示一条消息指示。

我当前的代码:

# create main 
def main():

    # take in name or part of persons name
    person = raw_input("Who are you looking for? \n> ")

    # convert string to all lowercase for easier searching
    person = person.lower()

    # run people search with the "person" as the parameters
    peopleSearch(person)

# create module to search the people list 
def peopleSearch(person):

    # create list with the names of the people
    people = ["john",
              "tom",
              "buddy",
              "bob",
              "sam",
              "timmy",
              "ames"]

    # create list with the phone numbers, indexes are corresponding with the names
    # people[0] is phoneNumbers[0] etc.
    phoneNumbers = ["5503942",
                    "9543029",
                    "5438439",
                    "5403922",
                    "8764532",
                    "8659392",
                    "9203940"]

现在,我的整个问题从这里开始。如何对姓名进行搜索(或部分搜索),并返回人员数组中人员姓名的索引并相应地打印电话号码?

更新:我将此添加到代码底部以进行搜索。

lookup = dict(zip(people, phoneNumbers))
if person in lookup:
    print "Name: ", person ," \nPhone:", lookup[person]

但这仅适用于完全匹配,我尝试使用它来获得部分匹配。

[x for x in enumerate(people) if person in x[1]]

但是'tim',例如,当我搜索它时,它会返回[(5, 'timmy')]. 如何获取该索引5并将其应用到print phoneNumbers[从搜索返回的索引中]

更新 2:终于让它完美地工作了。使用此代码:

# conduct a search for the person in the people list
search = [x for x in enumerate(people) if person in x[1]]

# for each person that matches the "search", print the name and phone
for index, person in search:

    # print name and phone of each person that matches search
    print "Name: ", person , "\nPhone: ", phoneNumbers[index]

# if there is nothing that matches the search
if not search:

    # display message saying no matches
    print "No matches."
4

2 回答 2

6

由于这是家庭作业,我不会直接给出代码。

您可以创建一个dict以名称为键、电话号码为其值的查找表。

创建查找表:

dict()您可以使用and轻松地将并行数组转换为字典zip()。类似于以下内容:

lookup = dict(zip(people, phoneNumbers))

要了解它是如何工作的,请查看以下示例:

>>> people = ["john", "jacob", "bob"]
>>> phoneNumbers = ["5503942", "8659392", "8659392"]
>>> zip(people, phoneNumbers)
[('john', '5503942'), ('jacob', '8659392'), ('bob', '8659392')]
>>> dict(zip(people, phoneNumbers))
{'jacob': '8659392', 'bob': '8659392', 'john': '5503942'}

判断一个人是否存在:

您可以使用以下方法快速确定查找表中是否存在人员(键):

if name in lookup:
    # ... phone number will be lookup[name]

姓名与子字符串匹配的人员列表:

这个答案应该让你走上正轨。

当然,如果搜索返回一个空列表,则没有匹配的名称,您可以显示适当的消息。


替代建议

另一种方法是直接搜索列表并获取匹配索引,然后您可以使用它来检索电话号码。

我将为您提供此示例,并由您自己将其扩展为可行的解决方案。

>>> people = ["john", "jacob", "bob", "jacklyn", "cojack", "samantha"]
>>> [x for x in enumerate(people) if "jac" in x[1]] 
[(1, 'jacob'), (3, 'jacklyn'), (4, 'cojack')]

如果您在此过程中遇到障碍,请分享您所做的事情,我们很乐意为您提供帮助。

祝好运并玩得开心点。


对更新问题的回应

请注意,我提供了两种替代解决方案,一种使用 dict 作为查找表,另一种直接搜索列表。您的更新表明您正在尝试将两种解决方案混合在一起,这不是必需的。

如果您需要在所有名称中搜索子字符串匹配项,则最好使用第二种解决方案(直接搜索列表)。我提供的代码示例返回一个列表(因为可能有多个名称包含该子字符串),每个项目都是. (index, name)您需要遍历列表并提取索引和名称。然后,您可以使用索引来检索电话号码。

为避免只为您提供解决方案,以下是相关示例:

>>> people = ["john", "jacob", "bob", "jacklyn", "cojack", "samantha"]
>>> matches = [x for x in enumerate(people) if "jac" in x[1]]
>>> for index, name in matches:
...     print index, name
... 
1 jacob
3 jacklyn
4 cojack
>>> matches = [x for x in enumerate(people) if "doesnotexist" in x[1]]
>>> if not matches:
...     print "no matches"
... 
no matches
于 2011-10-28T15:08:25.827 回答
0

您可能想在这里寻找答案How do I ... return the index of the persons name in the people array

于 2011-10-28T15:18:25.590 回答