python实现的二叉树算法和kmp算法实例


Posted in Python onApril 25, 2014

主要是:前序遍历、中序遍历、后序遍历、层级遍历、非递归前序遍历、非递归中序遍历、非递归后序遍历

#!/usr/bin/env python
#-*- coding:utf8 -*-

class TreeNode(object):
    def __init__(self, data=None, left=None, right=None):
        self.data = data
        self.left = left
        self.right = right

class Tree(object):
    def __init__(self, root=None):
        self.root = None
    def makeTree(self, data, left, right):
        self.root = TreeNode(data, left, right)
    def is_empty(self):
        """是否为空 """
        if self.root is None:
            return True
        return False
    def preOrder(self, r):
        """前序遍历 """
        if not r.is_empty():
            print r.root.data
            if r.root.left is not None:
                r.preOrder(r.root.left)
            if r.root.right is not None:
                r.preOrder(r.root.right)
    def inOrder(self, r):
        """中序遍历 """
        if not r.is_empty():
            if r.root.left is not None:
                r.preOrder(r.root.left)
            print r.root.data
            if r.root.right is not None:
                r.preOrder(r.root.right)
    def postOrder(self, r):
        """后续遍历 """
        if not r.is_empty():
            if r.root.left is not None:
                r.preOrder(r.root.left)
            print r.root.data
            if r.root.right is not None:
                r.preOrder(r.root.right)
    def levelOrder(self, r):
        """层级遍历 """
        if not r.is_empty():
            s = [r]
            while len(s) > 0:
                temp = s.pop(0)  # 先弹出最先append到的点
                if temp and temp.root is not None:
                    print temp.root.data
                    if temp.root.left is not None:
                        s.append(temp.root.left)
                    if self.root.right is not None:
                        s.append(temp.root.right)
    def preOrder1(self, r):
        """非递归 前序遍历 """
        stack = []
        current = r
        while len(stack) > 0 or (current and not current.is_empty()):
            while current and not current.is_empty():
                print current.root.data
                stack.append(current)
                current = current.root.left
            if len(stack) > 0:
                current = stack.pop()
                current = current.root.right
    def inOrder1(self, r):
        """非递归 中序遍历 """
        stack = []
        current = r
        while len(stack) > 0 or (current and not current.is_empty()):
            while current and not current.is_empty():
                stack.append(current)
                current = current.root.left
            if len(stack) > 0:
                current = stack.pop()
                print current.root.data
                current = current.root.right
    def postOrder1(self, r):
        """非递归 后续遍历 """
        stack = []
        current = r
        pre = None
        while len(stack) > 0 or (current and not current.is_empty()):
            if current and not current.is_empty():
                stack.append(current)
                current = current.root.left
            elif stack[-1].root.right != pre:
                current = stack[-1].root.right
                pre = None
            else:
                pre = stack.pop()
                print pre.root.data
    def leaves_count(self, r):
        """求叶子节点个数 """
        if r.is_empty():
            return 0
        elif (not r.root.left) and (not r.root.right):
            return 1
        else:
            return r.root.left.leaves_count(r.root.left) + r.root.right.leaves_count(r.root.right)

if __name__ == '__main__':
    """二叉树"""
    ra, rb, rc, rd, re, rf = Tree(), Tree(), Tree(), Tree(), Tree(), Tree()
    ra.makeTree("a", None, None)
    rb.makeTree("b", None, None)
    rc.makeTree("c", None, None)
    rd.makeTree("d", None, None)
    re.makeTree("e", None, None)
    rf.makeTree("f", None, None)
    r1, r2, r3, r4, r = Tree(), Tree(), Tree(), Tree(), Tree()
    r1.makeTree("-", rc, rd)
    r2.makeTree("*", rb, r1)
    r3.makeTree("+", ra, r2)
    r4.makeTree("/", re, rf)
    r.makeTree("-", r3, r4)
    r.preOrder(r)
    r.inOrder(r)
    r.postOrder(r)
    r.levelOrder(r)
    print r.leaves_count(r)

大学的时候学过kmp算法,最近在看的时候发现竟然忘了,所以去重新看了看书,然后用python写下了这个算法:

def kmp(text, pattern):
    """kmp算法 """
    pattern = list(pattern)
    next = [-1] * len(pattern)
    #next 函数
    i, j = 1, -1
    for i in range(1, len(pattern)):
        j = next[i - 1]
        while True:
            if pattern[i - 1] == pattern[j] or j == -1:
                next[i] = j + 1
                break
            else:
                j = next[j]
    #循环比较
    i, j = 0, 0
    while i < len(text) and j < len(pattern):
        if text[i] == pattern[j] or j == -1:
            i += 1
            j += 1
        else:
            j = next[j]
    #返回结果 如果匹配,返回匹配的位置,否则返回-1
    if j == len(pattern):
        print i ? j
    else:
        print -1
Python 相关文章推荐
Python对象的深拷贝和浅拷贝详解
Aug 25 Python
python中MySQLdb模块用法实例
Nov 10 Python
用python实现面向对像的ASP程序实例
Nov 10 Python
Python代码调试的几种方法总结
Apr 15 Python
Python中使用不同编码读写txt文件详解
May 28 Python
python中管道用法入门实例
Jun 04 Python
python实现FTP服务器服务的方法
Apr 11 Python
Python基于matplotlib绘制栈式直方图的方法示例
Aug 09 Python
Python使用pydub库对mp3与wav格式进行互转的方法
Jan 10 Python
python中的&amp;&amp;及||的实现示例
Aug 07 Python
python3 deque 双向队列创建与使用方法分析
Mar 24 Python
Django rest framework分页接口实现原理解析
Aug 21 Python
python中的__init__ 、__new__、__call__小结
Apr 25 #Python
Python yield 小结和实例
Apr 25 #Python
python计数排序和基数排序算法实例
Apr 25 #Python
python处理圆角图片、圆形图片的例子
Apr 25 #Python
python实现的阳历转阴历(农历)算法
Apr 25 #Python
Python实现的简单万年历例子分享
Apr 25 #Python
python实现simhash算法实例
Apr 25 #Python
You might like
生成php程序的php代码
2008/04/07 PHP
PHP实现域名whois查询的代码(数据源万网、新网)
2010/02/22 PHP
PHP中去掉字符串首尾空格的方法
2012/05/19 PHP
浅析PHP程序防止ddos,dns,集群服务器攻击的解决办法
2013/06/18 PHP
ThinkPHP的截取字符串函数无法显示省略号的解决方法
2014/06/25 PHP
php实现微信企业号支付个人的方法详解
2017/07/26 PHP
laravel中短信发送验证码的实现方法
2018/04/25 PHP
PHP获取本周所有日期或者最近七天所有日期的方法
2018/06/20 PHP
利用PHP内置SERVER开启web服务(本地开发使用)
2020/01/22 PHP
json原理分析及实例介绍
2012/11/29 Javascript
js文件缓存之版本管理详解
2013/07/05 Javascript
js实现简洁大方的二级下拉菜单效果代码
2015/09/01 Javascript
js实现图片上传并正常显示
2015/12/19 Javascript
vue2滚动条加载更多数据实现代码
2017/01/10 Javascript
nodejs 最新版安装npm 的使用详解
2018/01/18 NodeJs
关于jquery layui弹出层的使用方法
2018/04/21 jQuery
vue3.0 CLI - 2.2 - 组件 home.vue 的初步改造
2018/09/14 Javascript
微信小程序与webview交互实现支付功能
2019/06/07 Javascript
基于ID3决策树算法的实现(Python版)
2017/05/31 Python
Django入门使用示例
2017/12/12 Python
python之matplotlib学习绘制动态更新图实例代码
2018/01/23 Python
numpy.transpose对三维数组的转置方法
2018/04/17 Python
新手入门Python编程的8个实用建议
2019/07/12 Python
python 使用socket传输图片视频等文件的实现方式
2019/08/07 Python
Python中注释(多行注释和单行注释)的用法实例
2019/08/28 Python
Tensorflow 卷积的梯度反向传播过程
2020/02/10 Python
艺术设计专业个人求职信范文
2013/12/11 职场文书
二手书店创业计划书
2014/01/16 职场文书
乡镇综治宣传月活动总结
2014/07/02 职场文书
2014党员学习习主席讲话思想汇报
2014/09/15 职场文书
个人四风问题整改措施
2014/10/24 职场文书
见习报告的格式
2014/11/04 职场文书
民主评议党员个人总结
2015/02/13 职场文书
阿里云Nginx配置https实现域名访问项目(图文教程)
2021/03/31 Servers
Vue-Element-Admin集成自己的接口实现登录跳转
2021/06/23 Vue.js
Mysql分库分表之后主键处理的几种方法
2022/02/15 MySQL