删除链表中间节点和 a/b 处的节点

问题 1:
删除链表中间节点。

思路:
最先想到的方法是快慢指针,快指针每次走两步,慢指针每次走一步,快指针走到尾,慢指针刚好走到中间。

1)链表节点

class Node():
    def __init__(self, val):
        self.val = val
        self.next = None

2)书上的解法最终找到的是要删除的节点的前一个节点,但好几个地方写的x.next.next,感觉不直观

def remove_mid_node(head):
    if head is None or head.next is None:
        return head

    if head.next.next is None:
        return head.next;

    pre = head
    cur = head.next.next
    while cur.next is not None and cur.next.next is not None:
        pre = pre.next
        cur = cur.next.next

    pre.next = pre.next.next
    return head

3)简单记录prev,走到要删除的节点

def remove_mid_node2(head):
    if head is None or head.next is None:
        return head

    if head.next.next is None:
        return head.next;

    prev = None
    first = head.next
    second = head
    while first and first.next:
        first = first.next.next
        prev = second
        second = second.next

    prev.next = prev.next.next
    return head

4)测试

def is_same_list(head1, head2):
    p1 = head1
    p2 = head2
    while p1 and p2:
        if p1.val != p2.val:
            return False
        p1 = p1.next
        p2 = p2.next

    return p1 is None and p2 is None


def print_list(head):
    while head:
        print(head.val, end='->')
        head = head.next
    print()


def test_remove_mid_node(count):
    l = []
    for i in range(count):
        l.append(i)

    head1 = None
    tail1 = None
    for a in l:
        node = Node(a)
        if tail1 is None:
            head1 = node
        else:
            tail1.next = node
        tail1 = node

    head2 = None
    tail2 = None
    for a in l:
        node = Node(a)
        if tail2 is None:
            head2 = node
        else:
            tail2.next = node
        tail2 = node

    head1 = remove_mid_node(head1)
    head2 = remove_mid_node2(head2)
    if not is_same_list(head1, head2):
        raise Exception('Error')


if __name__ == '__main__':
    for i in range(100):
        test_remove_mid_node(i)

问题 2:
删除a/b位置的节点

思路:
先根据比例求出要删除的节点位置,然后移动到要删除的前一个位置:

def remove_node_by_ratio(head, a, b):
    if a < 1 or a > b:
        return head

    n = 0
    cur = head
    while cur is not None:
        n += 1
        cur = cur.next

    n = math.ceil(n*a / b)
    if n == 1:
        head = head.next

    if n > 1:
        cur = head
        n -= 1
        while n != 1:
            cur = cur.next
            n -= 1
        cur.next = cur.next.next

    return head

另一种写法:

def remove_node_by_ratio2(head, a, b):
    if a < 1 or a > b:
        return head

    n = 0
    cur = head
    while cur is not None:
        n += 1
        cur = cur.next

    n = math.ceil(n*a / b)
    if n == 1:
        head = head.next

    prev = None
    cur = head
    for i in range(n-1):
        prev = cur
        cur = cur.next

    if not prev:
        head = head.next
    else:
        prev.next = cur.next
    return head

测试:

def test_remove_node_by_ratio(n, a, b):
    l = []
    for i in range(n):
        l.append(i)

    head1 = None
    tail1 = None
    for v in l:
        node = Node(v)
        if tail1 is None:
            head1 = node
        else:
            tail1.next = node
        tail1 = node

    head2 = None
    tail2 = None
    for v in l:
        node = Node(v)
        if tail2 is None:
            head2 = node
        else:
            tail2.next = node
        tail2 = node

    head1 = remove_node_by_ratio(head1, a, b)
    head2 = remove_node_by_ratio2(head2, a, b)
    print_list(head1)
    print_list(head2)


def test_remove_node_by_ratio2(n, a, b):
    l = []
    for i in range(n):
        l.append(i)

    head1 = None
    tail1 = None
    for v in l:
        node = Node(v)
        if tail1 is None:
            head1 = node
        else:
            tail1.next = node
        tail1 = node

    head2 = None
    tail2 = None
    for v in l:
        node = Node(v)
        if tail2 is None:
            head2 = node
        else:
            tail2.next = node
        tail2 = node

    head1 = remove_node_by_ratio(head1, a, b)
    head2 = remove_node_by_ratio2(head2, a, b)

    if not is_same_list(head1, head2):
        raise Exception('Error 2')


if __name__ == '__main__':
    for i in range(100):
        test_remove_mid_node(i)
    
    test_remove_node_by_ratio(7, 1, 6)
    print('-------------------------')
    test_remove_node_by_ratio(7, 3, 6)
    print('-------------------------')
    test_remove_node_by_ratio(7, 5, 6)
    print('-------------------------')
    test_remove_node_by_ratio(7, 6, 6)
    print('-------------------------')
    test_remove_node_by_ratio(7, 1, 4)
    print('-------------------------')
    test_remove_node_by_ratio(7, 2, 4)
    print('-------------------------')
    test_remove_node_by_ratio(7, 3, 4)
    print('-------------------------')

    for n in range(10):
        for i in range(1, n):
            for j in range(1, i):
                test_remove_node_by_ratio2(n, j, i)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值