Python 找出英文单词列表(list)中最长单词链


Posted in Python onDecember 14, 2020

本文主要介绍Python中单词字符串的列表(list),找出列表中所有单词中前一个单词首字母和后一个单词尾字母相同,组成最长的单词链方法代码,并且每个单词不能多次使用。

例如:

words = ['giraffe', 'elephant', 'ant', 'tiger', 'racoon', 'cat', 'hedgehog', 'mouse']

最长的单词链列表:

['hedgehog', 'giraffe', 'elephant', 'tiger', 'racoon']

1、用递归方法查找

words = ['giraffe', 'elephant', 'ant', 'tiger', 'racoon', 'cat', 'hedgehog', 'mouse']
def get_results(_start, _current, _seen):
 if all(c in _seen for c in words if c[0] == _start[-1]):
  yield _current
 else:
   for i in words:
    if i[0] == _start[-1]:
     yield from get_results(i, _current+[i], _seen+[i])

new_d = [list(get_results(i, [i], []))[0] for i in words]
final_d = max([i for i in new_d if len(i) == len(set(i))], key=len)

输出结果:

['hedgehog', 'giraffe', 'elephant', 'tiger', 'racoon']

2、使用networkx查找

import networkx as nx
import matplotlib.pyplot as plt
words = ['giraffe', 'elephant', 'ant', 'tiger', 'racoon', 'cat',
     'hedgehog', 'mouse']
G = nx.DiGraph()
G.add_nodes_from(words)
for word1 in words:
  for word2 in words:
    if word1 != word2 and word1[-1] == word2[0]:
      G.add_edge(word1, word2)
nx.draw_networkx(G)
plt.show()
print(nx.algorithms.dag.dag_longest_path(G))

到此这篇关于Python 找出英文单词列表(list)中最长单词链的文章就介绍到这了,更多相关Python 列表最长单词链内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
python 快速排序代码
Nov 23 Python
编写同时兼容Python2.x与Python3.x版本的代码的几个示例
Mar 30 Python
设计模式中的原型模式在Python程序中的应用示例
Mar 02 Python
python tensorflow学习之识别单张图片的实现的示例
Feb 09 Python
python重试装饰器的简单实现方法
Jan 31 Python
关于Python核心框架tornado的异步协程的2种方法详解
Aug 28 Python
使用PyInstaller将Pygame库编写的小游戏程序打包为exe文件及出现问题解决方法
Sep 06 Python
python生成特定分布数的实例
Dec 05 Python
python 密码学示例——理解哈希(Hash)算法
Sep 21 Python
python打包生成so文件的实现
Oct 30 Python
python办公自动化之excel的操作
May 23 Python
Python可变集合和不可变集合的构造方法大全
Dec 06 Python
Python 排序最长英文单词链(列表中前一个单词末字母是下一个单词的首字母)
Dec 14 #Python
Python实现Kerberos用户的增删改查操作
Dec 14 #Python
python-地图可视化组件folium的操作
Dec 14 #Python
python多线程和多进程关系详解
Dec 14 #Python
Python Pandas list列表数据列拆分成多行的方法实现
Dec 14 #Python
pandas将list数据拆分成行或列的实现
Dec 13 #Python
pandas按照列的值排序(某一列或者多列)
Dec 13 #Python
You might like
PHP编程中的常见漏洞和代码实例
2014/08/06 PHP
PHP将URL转换成短网址的算法分享
2016/09/13 PHP
PHP下的浮点运算不准的解决方法
2016/10/27 PHP
PHP开发实现微信退款功能示例
2017/11/25 PHP
PHP attributes()函数讲解
2019/02/03 PHP
JavaScript 对Cookie 操作的封装小结
2009/12/31 Javascript
jQuery创建插件的代码分析
2011/04/14 Javascript
如何使用jquery动态加载js,css文件实现代码
2013/04/03 Javascript
js简单实现删除记录时的提示效果
2013/12/05 Javascript
Javascript常用字符串判断函数代码分享
2014/12/08 Javascript
jquery实现标签支持图文排列带上下箭头按钮的选项卡
2015/03/14 Javascript
浏览器复制插件zeroclipboard使用指南
2016/03/26 Javascript
JS实现提交表单前的数字及邮箱校检功能
2017/11/13 Javascript
vuejs实现本地数据的筛选分页功能思路详解
2017/11/15 Javascript
解决vue.js 数据渲染成功仍报错的问题
2018/08/25 Javascript
详解webpack打包第三方类库的正确姿势
2018/10/20 Javascript
基于Vue-cli快速搭建项目的完整步骤
2018/11/03 Javascript
Python标准异常和异常处理详解
2015/02/02 Python
Python多线程编程(一):threading模块综述
2015/04/05 Python
Python装饰器使用实例:验证参数合法性
2015/06/24 Python
浅谈django中的认证与登录
2016/10/31 Python
高效测试用例组织算法pairwise之Python实现方法
2017/07/19 Python
python xlsxwriter创建excel图表的方法
2018/06/11 Python
python替换字符串中的子串图文步骤
2019/06/19 Python
Matplotlib自定义坐标轴刻度的实现示例
2020/06/18 Python
对python pandas中 inplace 参数的理解
2020/06/27 Python
浅谈Python 命令行参数argparse写入图片路径操作
2020/07/12 Python
详解如何修改python中字典的键和值
2020/09/29 Python
【HTML5】3D模型--百行代码实现旋转立体魔方实例
2016/12/16 HTML / CSS
美国领先的男士和女士内衣购物网站:Freshpair
2019/02/25 全球购物
汇源肾宝广告词
2014/03/20 职场文书
CAD实训总结范文
2015/08/03 职场文书
生产设备维护保养制度
2015/08/06 职场文书
2019垃圾分类宣传口号汇总
2019/08/16 职场文书
Python实现照片卡通化
2021/12/06 Python
vue cli4中mockjs在dev环境和build环境的配置详情
2022/04/06 Vue.js