473,378 Members | 1,478 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Fast list traversal

I want to see if there is an alternative method for fast list
traversal. The code is very simple:

dict_long_lists = defaultdict(list)
for long_list in dict_long_lists.itervalues()
for element in long_list:
array_a[element] = m + n + p # m,n,p
are variable numbers

The long_list's are read from a defaultdict(list) dictionary and so
don't need initializing. The elements of long_list are integers and
ordered (sorted before placing in dictionary). There are 20,000
long_list's each with a variable number of elements (>5,000). The
elements of long_list are immutable (ie. don't change). The above
code is within a def function.

I've tried set() using defaultdict(set) but the elements are not
ordered.

What is the fastest way to traverse these long_list's sequentially
from the beginning to the end? Maybe there is another data structure
that can be used instead of a list.

Dinesh
Nov 2 '08 #1
4 2386
On Nov 2, 1:00*am, Dennis Lee Bieber <wlfr...@ix.netcom.comwrote:
On Sun, 2 Nov 2008 00:25:13 -0700 (PDT), dineshv
<dineshbvad...@hotmail.comdeclaimed the following in comp.lang.python:
I want to see if there is an alternative method for fast list
traversal. *The code is very simple:
dict_long_lists = defaultdict(list)
for long_list in dict_long_lists.itervalues()
* * * * for element in long_list:
* * * * * * * * array_a[element] = m + n + p * * * * * * * *# m,n,p
are variable numbers
The long_list's are read from a defaultdict(list) dictionary and so
don't need initializing. *The elements of long_list are integers and
ordered (sorted before placing in dictionary). *There are 20,000

* * * * Out of curiosity, what code is used to put the values in?The sample
you give above is creating an empty dictionary rigged, if I understand
the help file, to automatically give an empty list if a non-existent key
is requested. But in your loop, there is no possibility of a
non-existent key being requested -- .itervalues() will only traverse
over real data (ie; keys that DO exist in the dictionary).

* * * * And, if you are sorting a list "before placing in dictionary", why
need the defaultdict()? A plain

* * * * dict[key] = presorted_list_of_integers

would be sufficient.

* * * * Or do you mean to imply that you are using something like:

* * * * thedefaultdict[key].append(single_value)
* * * * thedefaultdict[key].sort()

EACH time you obtain another value from where-ever? If so, that's going
to be the biggest time sink...
What is the fastest way to traverse these long_list's sequentially
from the beginning to the end? *Maybe there is another data structure
that can be used instead of a list.

* * * * So far as I know, the list IS the fastest structure available for
sequential processing.
--
* * * * Wulfraed * * * *Dennis Lee Bieber * * * ** * * KD6MOG
* * * * wlfr...@ix.netcom.com * * * * * * *wulfr...@bestiaria.com
* * * * * * * * HTTP://wlfraed.home.netcom.com/
* * * * (Bestiaria Support Staff: * * * * * * * web-a...@bestiaria.com)
* * * * * * * * HTTP://www.bestiaria.com/
dict_long_lists is a dictionary of lists and is NOT empty. Thank-you
Nov 2 '08 #2
dineshv:
What is the fastest way to traverse these long_list's sequentially
from the beginning to the end? *Maybe there is another data structure
that can be used instead of a list.
Psyco can help a lot in that kind of code.

>The elements of long_list are immutable (ie. don't change).<
A tuple too may be fit then, but probably it doesn't improve the
situation.

Bye,
bearophile
Nov 2 '08 #3
On Sun, 02 Nov 2008 00:25:13 -0700, dineshv wrote:
I want to see if there is an alternative method for fast list traversal.
The code is very simple:

dict_long_lists = defaultdict(list)
for long_list in dict_long_lists.itervalues()
for element in long_list:
array_a[element] = m + n + p # m,n,p
are variable numbers

It might help if you showed some sample data, because your explanation is
confusing. You are asking about traversing lists, but your data is in a
defaultdict. Why is it in a dict, when you don't seem to be using the key
anywhere? Putting that aside, I'm going to make a guess and assume your
data looks something like this...

dict_long_lists = {
'key1': [0, 1, 2, 3, 4, 5],
'key2': [16, 17, 18, 19],
'key3': [7, 9, 11, 13, 15],
'key4': [6, 8, 10, 12, 14] }

Then you do something like this:

array_a = [None]*20

Then after running your code, you end up with:

array_a == [x0, x1, x2, x3, .... , x19]
where each x is calculated from m + n + p.
The long_list's are read from a defaultdict(list) dictionary and so
don't need initializing. The elements of long_list are integers and
ordered (sorted before placing in dictionary). There are 20,000
long_list's each with a variable number of elements (>5,000). The
elements of long_list are immutable (ie. don't change). The above code
is within a def function.

I've tried set() using defaultdict(set) but the elements are not
ordered.
It's not clear what you have tried to do with set(), or why the elements
need to be ordered.

What is the fastest way to traverse these long_list's sequentially from
the beginning to the end? Maybe there is another data structure that
can be used instead of a list.
I doubt you'll find anything faster than a list.

You have 20,000 lists of 5,000 items each, which means you have a
*minimum* of 100,000,000 items to traverse. If each iteration takes 0.1
millisecond, not an unreasonably slow speed depending on the amount of
computation each iteration is, that will take 10,000 seconds or nearly
three hours. The only solutions to that are to reduce the amount of
computation in each loop, reduce the number of items, or get a faster
computer.

Have you tried running the profiler to see where the time is actually
going? I suggest you write a small set of test data (say, 1000 items),
and profile it, then write a longer set of test data (say, 100,000
items), and if it's still not clear where the time is being lost, ask for
help.
--
Steven
Nov 2 '08 #4
Steven D'Aprano:
The only solutions to that are to reduce the amount of
computation in each loop, reduce the number of items, or get a faster
computer.
Changing language too is an option :-)
Languages like Java, D, C, C++ may help :-)

Bye,
bearophile
Nov 2 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Robert Oschler | last post by:
What's a good way to find a specific text node element in a web page's DOM tree? I thought of traversing each node but there has to be a faster way. Is there a "find text node by nodeValue"...
4
by: dssuresh6 | last post by:
Whether browsing forward or backward can be done using a singly linked list. Is there any specific case where a doubly linked list is needed? For people who say that singly linked list allows...
4
by: eksamor | last post by:
I have a simple linked list: struct element { struct element *next; int start; }; struct list { struct element *head;
14
by: Karch | last post by:
I need to find the fastest way in terms of storage and searching to determine if a given string contains one of a member of a list of strings. So, think of it in terms of this: I have a string such...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.