链表创建、翻转、遍历等

1、链表创建、翻转及遍历

单链表反转详解参考:单链表反转_python版

class CreateNode(object):
    '''创建链表节点'''
    def __init__(self,data,next = None):
        self.data = data
        self.next = next


def create_list_link(list_length):
    '''创建链表'''
    head = None
    for count in range(1, list_length+1):
        head = CreateNode(count, head)
    return head

你可能感兴趣的:(python,链表,翻转,遍历)