Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Is my Tree code too long?
#3
Nono,

['ab', [3, 8], 'b', [5], 'a', [7], 'b', 'a', [10], 'b', [12], 'a']

This tree above stores 2 branches 'abab' and 'baba'. My tree could store every 8 letters in 10MB of wikipedia text and you could find every 8 letters stored in the list. If you want to find 'baba' you always start at the very first item in the list - 'ab', you find where your first letter is (2nd position, assuming it is there), then you always go to next item '[3, 8]' and you'll pick the 2nd position number '8' because 'b' was 2nd position, and it points you to the 8th item 'a'. From there you have left to search 'a', [10], 'b', [12], 'a'].....a points you to item 10 'b', then 'a'. It doesn't matter how many 'b's are in the list :) you can only be directed to the item you can go to. I'm wondering if my code is compact or could be smaller.
Reply


Messages In This Thread
Is my Tree code too long? - by BladedSupernova - Feb-11-2020, 06:45 AM
RE: Is my Tree code too long? - by stullis - Feb-11-2020, 04:09 PM
RE: Is my Tree code too long? - by BladedSupernova - Feb-11-2020, 05:38 PM
RE: Is my Tree code too long? - by BladedSupernova - Feb-11-2020, 08:35 PM
RE: Is my Tree code too long? - by BladedSupernova - Feb-12-2020, 01:26 AM
RE: Is my Tree code too long? - by Larz60+ - Feb-12-2020, 03:07 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python Code for Preorder Traversal of a Binary Tree Bolt 1 635 Sep-22-2023, 09:32 AM
Last Post: Gribouillis
  Does this code need to be so long? duckredbeard 4 955 Sep-27-2022, 09:36 AM
Last Post: ibreeden
  how long can a line of code be? Skaperen 2 2,242 Jun-09-2021, 06:31 PM
Last Post: Skaperen
  Factorial Code is not working when the given number is very long integer Raj_Kumar 2 2,341 Mar-31-2020, 06:40 PM
Last Post: deanhystad
  Mix-in class tree file not running the self test code. arjunsingh2908 3 3,023 Aug-14-2018, 05:46 PM
Last Post: arjunsingh2908
  What is wrong with code? Bin. Tree counting Peter_EU 3 3,482 Nov-08-2017, 08:41 AM
Last Post: heiner55

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020