数据结构与算法
薛定谔的炼丹炉!
这个作者很懒,什么都没留下…
展开
-
(python)笔试输入:sys.stdin.readline和input
原文链接:https://www.jianshu.com/p/6f14ca3290ee①:输入一行数据并输出两种方法# 输入一行数据并输出import sys# 方法一:str1 = input()print(‘input 输入:’,str1,‘len=’,len(str1))print(‘循环遍历输入得到输入的每个字符的ascii码如下:’)for i in str1:print(ord(i))# 方法二:str2 = sys.stdin.readline()print(‘sys转载 2020-08-02 17:13:34 · 660 阅读 · 0 评论 -
Python3 在线笔试编程题中获取输入的方法
原文链接:https://blog.csdn.net/sinat_35821976/article/details/89509757?utm_medium=distribute.pc_aggpage_search_result.none-task-blog-2allfirst_rank_v2~rank_v25-3-89509757.nonecase转载 2020-07-29 17:02:43 · 1183 阅读 · 0 评论 -
LeetCode刷题值得推荐几个Python库
原文链接:https://blog.csdn.net/weixin_43352942/article/details/102882517转载 2020-06-29 14:52:17 · 764 阅读 · 0 评论 -
十一.排序
原文链接:https://www.cnblogs.com/bobo-zhang/p/10574925.html 10.排序 </h1> <div class="clear"></div> <div class="postBody"> 一.冒泡排序代码示例:#将乱序列表中最大元素排列到列表末尾位置def m转载 2020-06-15 23:16:21 · 144 阅读 · 0 评论 -
十.算法之顺序、二分、hash查找
原文链接:https://www.cnblogs.com/bobo-zhang/p/10531179.html 9.算法之顺序、二分、hash查找 </h1> <div class="clear"></div> <div class="postBody"> 一.查找/搜索 - 我们现在把注意力转向计算转载 2020-06-15 22:34:47 · 282 阅读 · 0 评论 -
九.二叉树
原文链接:https://www.cnblogs.com/bobo-zhang/p/10856009.html 11.二叉树 </h1> <div class="clear"></div> <div class="postBody"> python实现二叉树的数据结构: . 二叉树的排序方式: - 广度转载 2020-06-14 23:04:22 · 211 阅读 · 0 评论 -
八.基本数据结构-顺序表和链表
原文链接:https://www.cnblogs.com/bobo-zhang/p/10529330.html 8.基本数据结构-顺序表和链表 </h1> <div class="clear"></div> <div class="postBody"> 一.内存 - 计算机的作用:对数据进行存储和运算。首先我们转载 2020-06-14 20:55:38 · 205 阅读 · 0 评论 -
六.基本数据结构-双端队列(Deque)
原文链接:https://www.cnblogs.com/bobo-zhang/p/10525482.html 6.基本数据结构-双端队列(Deque) </h1> <div class="clear"></div> <div class="postBody"> 一.双端队列(Deque) - 概念:dequ转载 2020-06-14 17:36:02 · 789 阅读 · 0 评论 -
五.队列的应用案例-烫手的山芋
原文链接:https://www.cnblogs.com/bobo-zhang/p/10525106.html 5.队列的应用案例-烫手的山芋 </h1> <div class="clear"></div> <div class="postBody"> 烫手山芋游戏介绍:6个孩子围城一个圈,排列顺序孩子们自己指定。转载 2020-06-14 17:25:46 · 424 阅读 · 0 评论 -
四.基本数据结构-队列
原文链接:https://www.cnblogs.com/bobo-zhang/p/10524517.html 4.基本数据结构-队列 </h1> <div class="clear"></div> <div class="postBody"> 一.队列 - 概念:队列是项的有序结合,其中添加新项的一端称为队尾转载 2020-06-14 17:11:50 · 131 阅读 · 0 评论 -
三.基本数据结构-栈
原文链接:https://www.cnblogs.com/bobo-zhang/p/10524297.html 3.基本数据结构-栈 </h1> <div class="clear"></div> <div class="postBody"> 一.线性数据结构 - 我们从四个简单但重要的概念开始研究数据结构。栈转载 2020-06-14 16:31:53 · 102 阅读 · 0 评论 -
二.python数据结构的性能分析
原文链接:https://www.cnblogs.com/bobo-zhang/p/10521769.html 2.python数据结构的性能分析 </h1> <div class="clear"></div> <div class="postBody"> 一.引言 - 现在大家对 大O 算法和不同函转载 2020-06-14 16:09:11 · 227 阅读 · 0 评论 -
一.数据结构&算法的引言+时间复杂度
原文链接:https://www.cnblogs.com/bobo-zhang/p/10514873.html 1.数据结构&算法的引言+时间复杂度 </h1> <div class="clear"></div> <div class="postBody"> 一.什么是计算机科学? 首先明确的一点就是计转载 2020-06-14 16:02:52 · 189 阅读 · 0 评论 -
python快速入门篇1-数据结构与算法(Python)
原文链接:https://blog.csdn.net/wangdingqiaoit/article/details/77620393 写在前面python语言以转载 2020-06-08 23:38:40 · 415 阅读 · 0 评论 -
前篇-数据结构与算法(Python)
原文链接:https://blog.csdn.net/wangdingqiaoit/article/details/77619268转载 2020-06-08 23:37:14 · 105 阅读 · 0 评论 -
数据结构与算法总结-Python
原文链接:https://blog.csdn.net/weixin_41624982/article/details/89486592?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.nonecase&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.n转载 2020-06-08 18:29:19 · 130 阅读 · 0 评论