Skip to content Skip to sidebar Skip to footer
Showing posts with the label Linked List

Using Linked Lists And Patterns In Python

Trying to write a function that will iterate over the linked list, sum up all of the odd numbers an… Read more Using Linked Lists And Patterns In Python

How To Implement An Xor Linked List In Python?

Given that python objects are only a reference to the actual memory Objects and memory address of … Read more How To Implement An Xor Linked List In Python?

Cython Implementation No Faster Than Pure Python

For an exercise I've written a XOR doubly-linked list %%cython from cpython.object cimport PyO… Read more Cython Implementation No Faster Than Pure Python