473,395 Members | 1,401 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,395 software developers and data experts.

Finding lowest value in dictionary of objects, how?

Hi,

I'm new to Python and working on a school assignment.

I have setup a dictionary where the keys point to an object. Each
object has two member variables. I need to find the smallest value
contained in this group of objects.

The objects are defined as follows:

class Block:
def __init__(self,addr):
self.addr = addr
self.age = 0

My dictionary is defined as:
blocks = {}

I have added 1000 (will hold more after I get this working) objects. I
need to find the lowest age in the dictionary. If there is more than
one age that is lowest (like if several of them are '1', etc), then I
can just pick randomly any that equal the lowest value. I don't care
which one I get.

I saw the following code here but I don't know how to use this sample
to get at the values I need in the blocks object.

def key_of_lowest(self,addr)
lowest = min(self.blocks.values())
return [k for k in self.blocks if self.blocks[k]==val][0]

This one returns the lowest value Object, but not the lowest value of
age in all the Objects of the table.

I hope someone can help me figure out the syntax for what I'm trying
to do.

Thanks in advance.

David
Nov 19 '07 #1
5 6302
On Mon, 19 Nov 2007 00:18:33 -0800, davenet wrote:
The objects are defined as follows:

class Block:
def __init__(self,addr):
self.addr = addr
self.age = 0

My dictionary is defined as:
blocks = {}

I have added 1000 (will hold more after I get this working) objects. I
need to find the lowest age in the dictionary. If there is more than
one age that is lowest (like if several of them are '1', etc), then I
can just pick randomly any that equal the lowest value. I don't care
which one I get.

I saw the following code here but I don't know how to use this sample
to get at the values I need in the blocks object.

def key_of_lowest(self,addr)
lowest = min(self.blocks.values())
return [k for k in self.blocks if self.blocks[k]==val][0]

This one returns the lowest value Object, but not the lowest value of
age in all the Objects of the table.
In the example `min()` finds the object with the lowest `id()`. To change
that you can implement the `__cmp__()` method on your `Block` objects.

Ciao,
Marc 'BlackJack' Rintsch
Nov 19 '07 #2
On Mon, 19 Nov 2007 00:18:33 -0800, davenet wrote:
Hi,

I'm new to Python and working on a school assignment.
Thank you for your honesty.

I have setup a dictionary where the keys point to an object. Each object
has two member variables. I need to find the smallest value contained in
this group of objects.

The objects are defined as follows:

class Block:
def __init__(self,addr):
self.addr = addr
self.age = 0

My dictionary is defined as:
blocks = {}

One possible approach is to define your Block data-type so that it
defines less-than and greater-than comparisons. Then you can just ask
Python to find the minimum Block by passing a list (not a dictionary) of
Blocks to the function min().

I have added 1000 (will hold more after I get this working) objects. I
need to find the lowest age in the dictionary. If there is more than one
age that is lowest (like if several of them are '1', etc), then I can
just pick randomly any that equal the lowest value. I don't care which
one I get.
Question: you don't explain how you have added them to the dict. A dict
has a key and a value. What are the keys, and what are the values?

I saw the following code here but I don't know how to use this sample to
get at the values I need in the blocks object.

def key_of_lowest(self,addr)
lowest = min(self.blocks.values())
return [k for k in self.blocks if self.blocks[k]==val][0]

This one returns the lowest value Object, but not the lowest value of
age in all the Objects of the table.
That code doesn't make much sense. It looks like a method rather than a
function (the argument "self" is the giveaway). What is self.blocks and
what is val?

I hope someone can help me figure out the syntax for what I'm trying to
do.
The first step you should do is write down how YOU would solve the
problem.

"Let's see now... if I had a list of objects, and I wanted to find the
smallest one, I would look at the first object, and compare it to all the
other objects. If it was smaller than or equal to every other object in
the list, I've found the smallest object and I'm finished!

If not, I'd take the second object, and compare it to all the other
objects. If it is smaller than or equal to everything else, I've found
the smallest object, and I'm finished.

If not, I would do the same for the third, and fourth, and fifth, and so
forth, until I've found the smallest object."

Now start converting it to Python, step by step:

# Start with English instructions:
with each item in the list of objects:
if item is smaller than all the other items:
item is the smallest, and we're done
# Turn it into a function:
function find the smallest(list of objects):
with each item in the list of objects:
if item is smaller than all the other items:
item is the smallest, and we're done
# Now start using Python syntax:
def find_smallest(list_of_objects):
for item in list_of_objects:
if item is smaller than all the other items:
return item
# And continue:
def find_smallest(list_of_objects):
for item in list_of_objects:
for x in list_of_objects:
if item <= x:
return item

What I've done there is re-write the min() function in one of the
slowest, most inefficient ways possible. If you try doing it by hand,
you'll quickly see it's VERY inefficient. The better ways should be
obvious once you actually do it. Then go through the process of writing
it as Python code.

Hope this helps,
--
Steven.
Nov 19 '07 #3
On Mon, 19 Nov 2007 20:00:27 +1100, Ben Finney wrote:
You should carefully read the policies on plagiarism for your school. In
general, the student is expected to use the resources of their course
material, the lecturer and tutor, and their own creativity to come up
with the answers — *not* ask on the internet.
Plagiarism does not mean asking people for help. Nor does it mean using
resources other than the official course material.

It means passing off other people's work as your own.

Even in the sad, debased, commercialized world of the 21st century
university, learning outside of the class is not yet forbidden.

--
Steven.
Nov 19 '07 #4
davenet wrote:
Hi,

I'm new to Python and working on a school assignment.

I have setup a dictionary where the keys point to an object. Each
object has two member variables. I need to find the smallest value
contained in this group of objects.

The objects are defined as follows:

class Block:
def __init__(self,addr):
self.addr = addr
self.age = 0

My dictionary is defined as:
blocks = {}

I have added 1000 (will hold more after I get this working) objects. I
need to find the lowest age in the dictionary. If there is more than
one age that is lowest (like if several of them are '1', etc), then I
can just pick randomly any that equal the lowest value.
>>help(min)
Help on built-in function min in module __builtin__:

min(...)
min(iterable[, key=func]) -value
min(a, b, c, ...[, key=func]) -value

With a single iterable argument, return its smallest item.
With two or more arguments, return the smallest argument.
>>def f(x) : return 3*x**2+10*x-4
>>min(f(x) for x in range(-100,100))
-12
>>min(range(-100,100), key=f)
-2
>>f(-2)
-12

Nov 19 '07 #5
Boris Borcic wrote:
davenet wrote:
>Hi,

I'm new to Python and working on a school assignment.

I have setup a dictionary where the keys point to an object. Each
object has two member variables. I need to find the smallest value
contained in this group of objects.

The objects are defined as follows:

class Block:
def __init__(self,addr):
self.addr = addr
self.age = 0

My dictionary is defined as:
blocks = {}

I have added 1000 (will hold more after I get this working) objects. I
need to find the lowest age in the dictionary. If there is more than
one age that is lowest (like if several of them are '1', etc), then I
can just pick randomly any that equal the lowest value.
>>help(min)
Help on built-in function min in module __builtin__:

min(...)
min(iterable[, key=func]) -value
min(a, b, c, ...[, key=func]) -value

With a single iterable argument, return its smallest item.
With two or more arguments, return the smallest argument.
>>def f(x) : return 3*x**2+10*x-4
>>min(f(x) for x in range(-100,100))
-12
>>min(range(-100,100), key=f)
-2
>>f(-2)
-12
I'd like to second this one just so it doesn't get lost among all the
other responses. You definitely want to look into the key= argument of
min(). Your key function should look something like::

def key(block):
# return whatever attribute of block you care about

Then just modify this code::

lowest = min(self.blocks.values())

to use the key= argument as well. I don't think you need the list
comprehension at all.

STeVe
Nov 19 '07 #6

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

Similar topics

0
by: RDJ | last post by:
=== This is a AoooAoooA project (^_^) === DictObjSys (DOS): Dictionary Objects System V.0.0.1 (2004 Oct 26) Copyright (C) 2004 RDJ This library is free software; you can redistribute it...
8
by: starman7 | last post by:
i have a table with objects in categories and their positions. there will be several rows with category 400, and they will have various positions, i want to delete only the row with the lowest...
5
by: jayipee | last post by:
hi to all. can anybody help me figuring out how to get the minimum value from this list. log1 354 log2 232 log3 155 from the above list i want to have a return value "log3" since...
2
sonic
by: sonic | last post by:
Does anyone know what I can do to this function to get it to drop the lowest value? Thanks for any insight. void sort(double* score, int size) { int startScan; int minIndex; double...
30
by: =?Utf-8?B?VGhvbWFzVDIy?= | last post by:
Hello, I have an array that holds 4 values ( they contain random numbers). I would like to find the lowest value (if there is a tie i would like to find one of the tie.) then remove that value....
15
by: timothytoe | last post by:
Situation: I have an array of objects. I want to find the maximum value of a given numeric value that exists in each of the objects. Suppose the array of objects is called "stat" and the numeric...
7
by: Margie | last post by:
With information gathered from a question I posted 3 weeks ago, I made the following query for my movie database: SELECT Nation.Nation, LinkFilmNation., Count(*) AS Total, Avg(Film.) AS FROM Film...
7
by: Alberto Fortuny | last post by:
Hey guys, any idea as to how to find the lowest value and the highest value in this 2D array? I made the functions to find the lowest and highest, but all im getting on execution is a 1 on both, no...
2
by: Gurpreet Singhh | last post by:
I need to select maximum of the Emp_id values from SQL server 2005 table.I was using the command which selects max value till 10 but after that it fails to pick max value of emp id from the...
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: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.