473,770 Members | 5,976 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

The SETT Programming Contest: The fastest set<T> implementation

The SETT Programming Contest: The fastest set<Timplementa tion

Write the fastest set<Timplementa tion using only standard C++/C.
Ideally it should have the same interface like std::set.
At least the following methods must be implemented:
insert(), find(), begin(), end(), erase(), size(), operator<(),
and at least the forward iterator.

Here, speed and correctness are the 2 most important factors.
Functionally it should behave similar to std::set,
have practically no limitation on the number of items,
and be significantly faster, either always or under specified
conditions (for example for random items etc.).

The class should be placed in an own namespace.
Supply also a benchmark routine which compares your
implementation with that of std::set, and briefly document
and comment these results.

Hint: Since items in a set are always in an ordered sequence
(as determined by operator<()) you need to use some tree
routines (AVL, red-black, splay, etc.) or use your own tree
method in the heart of your implementation.

See also this paper:
Ben Pfaff, "Performanc e Analysis of BST in System Software", Stanford University
http://www.stanford.edu/~blp/papers/libavl.pdf

Publish your finished project somewhere on the Web
(for example at your own homepage or at http://sourceforge.net/ )
and announce it in comp.lang.c++ .

There is no deadline on this contest. The fastest method
will be the winner of the SETT Programming Contest,
until someone comes up with a faster method.

Good Luck!

Jun 27 '08
22 2709

"SETT Programming Contest" <se**@sett.prog ramming.contest .org.invalidwro te
in message news:g2******** **@aioe.org...
The SETT Programming Contest: The fastest set<Timplementa tion

Write the fastest set<Timplementa tion using only standard C++/C.
Ideally it should have the same interface like std::set.
At least the following methods must be implemented:
insert(), find(), begin(), end(), erase(), size(), operator<(),
and at least the forward iterator.
I'm not going to enter this (since, until today, I'd never heard of set<T>
or BST).

But I'm interested in clearing up what the task is.

A set<Tis just an arbitrary collection of values (each unique) of type T?
Like a Pascal set? (OK a Pascal set is limited to scalars and has a pre-set
range).

And T can be anything at all, provided operator < is meaningful for it?

In this case it all sounds pretty straightforward , so why limit the contest
to C++ only? Is it to eliminate languages that already have very fast
implementations built-in?

--
Bartc
Jun 27 '08 #11
On Tue, 3 Jun 2008 21:57:52 +0100, "Stephen Howe"
<sjhoweATdialDO TpipexDOTcomwro te:
>As others have observed, the conditions stop C being used.

The basic issue for most set implmentations is that insert/delete is slowest
as memory allocation/deallocation occurs per-node.
If you double this, the perforamance of set doubles.
So an allocator geared towards allocation of nodes the same size is where
time should be spent.
Point well taken; however that part is fairly trivial (for
sufficiently difficult of versions of trivial, of course.) The
idea is to create a linked list of blocks of storage that are
used as the equivalent of automatic storage, along with a free
list of nodes. Insert snatches a node from the free list, delete
puts one back on the free list. If the free list is empty,
insert nibbles at the current block. The ime cost is a small
fixed cost per operation, negligible compared to the operation
time cost.

The space is returned by freeing the chained list of blocks one
at a time when the set is deleted.

Richard Harter, cr*@tiac.net
http://home.tiac.net/~cri, http://www.varinoma.com
Save the Earth now!!
It's the only planet with chocolate.
Jun 27 '08 #12
On Tue, 3 Jun 2008 16:36:06 +0200, "SETT Programming Contest"
<se**@sett.prog ramming.contest .org.invalidwro te:
>The SETT Programming Contest: The fastest set<Timplementa tion

Write the fastest set<Timplementa tion using only standard C++/C.
Ideally it should have the same interface like std::set.
At least the following methods must be implemented:
insert(), find(), begin(), end(), erase(), size(), operator<(),
and at least the forward iterator.
What about union, intersection, and set difference?
Richard Harter, cr*@tiac.net
http://home.tiac.net/~cri, http://www.varinoma.com
Save the Earth now!!
It's the only planet with chocolate.
Jun 27 '08 #13
Point well taken; however that part is fairly trivial (for
sufficiently difficult of versions of trivial, of course.) The
idea is to create a linked list of blocks of storage that are
used as the equivalent of automatic storage, along with a free
list of nodes. Insert snatches a node from the free list, delete
puts one back on the free list. If the free list is empty,
insert nibbles at the current block. The ime cost is a small
fixed cost per operation, negligible compared to the operation
time cost.

The space is returned by freeing the chained list of blocks one
at a time when the set is deleted.
I wouldn't do that. The scheme above works fine providing you are recycling
nodes.
If you intend to insert nodes and the only point of deletion is when the set
is deleted, you have not gained anything.

I would looking to use a pool scheme, where large blocks of raw memory are
carved off, and sliced up per node.
Anything to reduce the cost of node allocation.

Stephen Howe


Jun 27 '08 #14
"SETT Programming Contest" <se**@sett.prog ramming.contest .org.invalid>
writes:
Write the fastest set<Timplementa tion using only standard C++/C.
Ideally it should have the same interface like std::set.
At least the following methods must be implemented:
insert(), find(), begin(), end(), erase(), size(), operator<(),
and at least the forward iterator.
Wouldn't it be easier to compare the implementations if you
required them to meet all the requirements placed on std::set by
the C++ standard?
See also this paper:
Ben Pfaff, "Performanc e Analysis of BST in System Software", Stanford University
http://www.stanford.edu/~blp/papers/libavl.pdf
How amusing.
--
Ben Pfaff
http://benpfaff.org
Jun 27 '08 #15
I would looking to use a pool scheme, where large blocks of raw memory are
carved off, and sliced up per node.
Anything to reduce the cost of node allocation.
Perhaps run both schemes or similar. A reap springs to mind (heap inside a
region)

Stephen Howe
Jun 27 '08 #16
On Wed, 4 Jun 2008 17:31:39 +0100, "Stephen Howe"
<sjhoweATdialDO TpipexDOTcomwro te:
>Point well taken; however that part is fairly trivial (for
sufficiently difficult of versions of trivial, of course.) The
idea is to create a linked list of blocks of storage that are
used as the equivalent of automatic storage, along with a free
list of nodes. Insert snatches a node from the free list, delete
puts one back on the free list. If the free list is empty,
insert nibbles at the current block. The ime cost is a small
fixed cost per operation, negligible compared to the operation
time cost.

The space is returned by freeing the chained list of blocks one
at a time when the set is deleted.

I wouldn't do that. The scheme above works fine providing you are recycling
nodes.
If you intend to insert nodes and the only point of deletion is when the set
is deleted, you have not gained anything.

I would looking to use a pool scheme, where large blocks of raw memory are
carved off, and sliced up per node.
Anything to reduce the cost of node allocation.
What we have here is a failure to communicate. I read you as
saying, "Don't do that. It won't work. Instead do what you're
doing." :-)

No doubt the fault is mine for not spelling out more details.
The aforementioned blocks are big blocks, aka pools, large enough
to hold upwards of 100 nodes. (I sort of took it for granted
that saying "used as the equivalent of automatic storage" was
sufficient.) Blocks are in a structure that looks something like
this:

struct stgpool {
stgpool * link;
size_t pos;
char * space;
};

We have a routine to create a pool, one to get storage from the
pool, and one to delete the pool. The argument for the routine
to get storage from a pool is the amount of storage required.
The pool allocator adds the requested size to the position
(making due allowance for alignment) and returns the old
position. In case it is not clear, "space" is the big block of
space and "pos" is the index into "space". When a block is
created we malloc space for the struct, space for a block, link
in the new stgpool, and set pos = 0.

The freelist is a refinement, letting us recycle nodes if there
are inserts and deletes. This rather simple pool allocator is a
high water allocator, i.e., it keeps all of the storage it
mallocs until the pool delete routine is called.

Incidentally, you do need to chain the pools when you don't know
in advance how much space you are actually going to need. Also,
there is no need to realloc.

Richard Harter, cr*@tiac.net
http://home.tiac.net/~cri, http://www.varinoma.com
Save the Earth now!!
It's the only planet with chocolate.
Jun 27 '08 #17
On Wed, 4 Jun 2008 19:34:09 +0100, "Stephen Howe"
<sjhoweATdialDO TpipexDOTcomwro te:
>I would looking to use a pool scheme, where large blocks of raw memory are
carved off, and sliced up per node.
Anything to reduce the cost of node allocation.

Perhaps run both schemes or similar. A reap springs to mind (heap inside a
region)
Actually, what I proposed was a combination of a pool allocator
and a freelist. Apparently that wasn't clear. I don't see that
a reap buys you anything.
Richard Harter, cr*@tiac.net
http://home.tiac.net/~cri, http://www.varinoma.com
Save the Earth now!!
It's the only planet with chocolate.
Jun 27 '08 #18
In article <g2**********@a ioe.org>, se**@sett.progr amming.contest. org.invalid says...
The SETT Programming Contest: The fastest set<Timplementa tion

Write the fastest set<Timplementa tion using only standard C++/C.
Ideally it should have the same interface like std::set.
At least the following methods must be implemented:
insert(), find(), begin(), end(), erase(), size(), operator<(),
and at least the forward iterator.

Here, speed and correctness are the 2 most important factors.
Does this mean that a totally incorect but exceedingly fast implementation can still get a 50% pass mark?
Jun 27 '08 #19
On Jun 4, 7:56 pm, Ben Pfaff <b...@cs.stanfo rd.eduwrote:
"SETT Programming Contest" <s...@sett.prog ramming.contest .org.invalid>
writes:
Write the fastest set<Timplementa tion using only standard C++/C.
Ideally it should have the same interface like std::set.
At least the following methods must be implemented:
insert(), find(), begin(), end(), erase(), size(), operator<(),
and at least the forward iterator.

Wouldn't it be easier to compare the implementations if you
required them to meet all the requirements placed on std::set by
the C++ standard?
See also this paper:
Ben Pfaff, "Performanc e Analysis of BST in System Software", Stanford University
http://www.stanford.edu/~blp/papers/libavl.pdf

How amusing.
--
Ben Pfaffhttp://benpfaff.org

As stated in previous post, this requirement alone assumes certain
memory model, which may affect the actual performance. Nevertheless, I
would like propose the following code fragment as possible candidate
for the actual test (after-all, we should start somewhere):
template <typename SetT>
void sett_contest(Se tT& s, int n)
{
typedef typename SetT::value_typ e value_type;

int i;
std::vector<val ue_type v(n);

for (i = 0; i < n; ++i)
{
v[i] = value_type(i);
}

std::random_shu ffle(v.begin(), v.end());
s.insert(v.begi n(), v.end());

std::random_shu ffle(v.begin(), v.end());
for (i = 0; i < n; ++i)
{
s.erase(s.find( v[i]));
}
}

ShacharS.
Jun 27 '08 #20

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

Similar topics

9
10899
by: Harald Grossauer | last post by:
Usually STL containers have something like "iterator container<>::erase(iterator)" which erases the element the iterator points to and returns another valid iterator. Set does not have this, set::erase() returns void and "invalidates" the iterator. Now I have the following code: while(!some_set.empty()) { for(it = some_set.begin(); it != some_set.end(); it++) {
16
2719
by: Mars | last post by:
I'm writing a program for listing all binary numbers of the same length with the same number of 1s. e.g. 0011 0101 0110 1001 1010 1100
7
5770
by: Renzr | last post by:
I have a problem about the std::set<>iterator. After finding a term in the std::set<>, i want to know the distance from the current term to the begin(). But i have got a error. Please offer me help, thank you. I am a freshman about the STL. The following is the code. #include <set> #include <iostream> #include <vector> int main() {
0
9592
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9425
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10230
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10058
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10004
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8886
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7416
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6678
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5313
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...

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.