gpt4 book ai didi

python - 导入单词列表,不想在代码中重复一遍

转载 作者:太空宇宙 更新时间:2023-11-03 16:20:51 26 4
gpt4 key购买 nike

我不想发布太多代码,但我已经完成了分配的代码,我的代码的问题是每次我运行名为 findchildren 的方法时,它都会导入我的列表每次。所以我尝试更改我的代码,并且我的 findchildren 正在工作,它目前看起来像这样:

from queue import Queue

ordlista=[]
fil=open("labb9text.txt")
for line in fil.readlines():
ordlista.append(line.strip())
setlista=set()
for a in ordlista:
if a not in setlista:
setlista.add(a)

def findchildren(lista,parent):
children=[]
lparent=list(parent)
lista.remove(parent)
for word in lista:
letters=list(word)
count=0
i=0
for a in letters:
if a==lparent[i]:
count+=1
i+=1
else:
i+=1
if count==2:
if word not in children:
children.append(word)
if i>2:
break
return children

我的问题是我有另一种方法,当我在 findchildren 中没有参数 lista 时,该方法有效(相反,我一遍又一遍地导入列表,这我不想这样做,我想在开始时导入一次)。请注意,当我调用我的方法时,我使用 Labb9.findchildren(labb9.ordlista,"fan") 来调用它。所以我的 findchildren 目前正在工作,问题在于下面的方法:

def way(start,end): 
queue=Queue()
queue.enqueue(start)
visited=set()
while not queue.isempty():
vertex=queue.get()
if vertex==end:
return True
else:
visited.add(vertex)
s=findchildren(labb999.ordlista,start)
for vertex in s:
if vertex not in visited:
queue.put(vertex)
else:
visited.add(vertex)
return False

请注意,当我每次将列表导入到 findchildren 时,way 方法都可以工作,现在我已将其更改为 中的参数findchildren,它不起作用。我收到错误:

name "lista" is not defined.

我做错了什么?

最佳答案

您的目标是查找是否存在从 startstop 的路径,其中路径被描述为长度为两个排列重叠的单词。

我认为您的代码可以更好地组织为图表和在该图表上运行的函数。它将消除您的所有问题:您可以拥有与图形对象关联的单词集的单个副本,并且可以使用您的函数 way 直接对该对象进行操作。

from queue import Queue
import itertools

class Graph(object):
def __init__(self, filename):
# Creates a set, which removes duplicates automatically
self.word_set = {word for word in open(filename, 'r').read().split()}

def _len_2_permutations(self, word):
# Create a list of length two permutations from a word
return itertools.permutations(word, 2)

def has_word_overlap(self, word1, word2):
# If there are any overlapping length two permutations, the set will not be empty
return len(set(self._len_2_permutations(word1)) & set(self._len_2_permutations(word2))) > 0

def find_children(self, start):
# Children are those words who have overlapping length two perms
return [word for word in self.word_set if self.has_word_overlap(start, word) and word != start]

现在我们可以定义类似 BFS 的函数:

def way(g, start, stop):
queue = Queue()
# Push start
queue.put(start)
visited = set()
while not queue.empty():
# Get the top of the queue
vertex = queue.get()
# If it's our target, we're done
if vertex == stop:
return True
# Otherwise, visit it
visited.add(vertex)
# Find its children
s = g.find_children(vertex)
# Push the unvisited children -- explore them later
for vertex in s:
if vertex not in visited:
queue.put(vertex)
return False

现在让我们创建一个 main:

if __name__ == "__main__":
g = Graph("foo.txt")
start = "fan"
stop = "foo"
print("There's a path from '{0}' to '{1}': {2}".format(start, stop, way(g, start, stop)))

此代码尚未经过彻底测试,但它应该能让您走上正确的道路。

关于python - 导入单词列表,不想在代码中重复一遍,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38483121/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com