in the below xor linked list python code when i was trying to insert element 200,it was overlapping the element 100 why?

前端 未结 0 925
猫巷女王i
猫巷女王i 2021-01-31 01:28
import ctypes

class node:
    def __init__(self,data):
        self.data=data
        self.ptrdiff=0

#inserting an element at starting of linkedlist
def insert_at_begg         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题