active questions tagged data-structures - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:31:48Z http://stackoverflow.com/feeds/tag/data-structures http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1805480/how-would-you-represent-a-minesweeper-grid-in-python 0 How would you represent a MineSweeper grid in Python? BobTheBuilder 2009-11-26T20:17:31Z 2009-11-26T23:01:30Z <p>What datastructure would you use in Python to represent the internal state of a MineSweeper grid?</p> <p>Each x,y position will hold a numerical value which represents its current cell state (unexplored, mine, flag, ?).</p> <p>Should I use nested lists? This seems like the closest thing to a 2D array and it is what I would probably use in any other language (2d array that is).</p> <p>I'm not that experienced with Python so could someone give me a suggestion?</p> http://stackoverflow.com/questions/1799605/data-structure-to-sync-a-file-tree 0 Data structure to sync a file-tree Yrlec 2009-11-25T20:02:58Z 2009-11-26T22:36:11Z <p>I'm in the process of a writing an application, which needs to synchronize a file-structure between a client and a (http) server. </p> <p>The file-structure is essentially a list of file-paths where each path is a string connected with 1 or more data-block ids (256-bit reference to the actual data-block). A data-block can be referenced by several files so there's a n-m relation between paths and ids. Right now it is just a list of paths with there ids, but it can easily be converted to the tree structure which the paths represent, if that's necessary for the synchronization.</p> <p>I'm looking for a data structure which allows me to sync this data efficiently. Mainly achieving two goals:</p> <ol> <li>A change in one file should <em>not</em> force the client to send the entire file-strcuture to the server, only a small subset of it.</li> <li>If many files are changed these changes should be grouped together. E.g. so that 1000 changes doesn't result in 1000 requests to the server.</li> </ol> <p>As you see, the goals are a bit conflicting and I'm therefore looking for something which finds a good middleground between them. The second goal can easily be achieved by grouping several changes into one http-request, but then the processing required by the server (to parse all changes requested by the HTTP-request) should be very inexpensive, computing wise.</p> <p>I should also mention that there could be several clients synchronizing the same structure on the server. It must therefore be easy to detect the changes by one client and then syncrhonize it to an other client (i.e. it's not just an upload to the server).</p> <p>I'm certainly not the first one doing something like this, so I assume there are some smart solutions available. For instance, I guess both Dropbox and Subversion have similar requirements when they sync their meta-data. Does anyone happen to know how they have implemented it?</p> http://stackoverflow.com/questions/1805257/elements-of-a-structure 1 elements of a structure zlack 2009-11-26T19:13:42Z 2009-11-26T19:19:58Z <p>Is there a way to get all the elements of a structure, so I can use them and perhaps iterate over them and print them ?</p> http://stackoverflow.com/questions/1644387/create-groups-from-sets-of-nodes 0 Create groups from sets of nodes visu 2009-10-29T15:07:11Z 2009-11-26T17:23:54Z <p>I have a list of sets (a,b,c,d,e in below example). Each of the sets contains a list of nodes in that set (1-6 below). I was wondering that there probably is a general known algorithm for achieving the below, and I just do not know about it. </p> <pre><code>sets[ a[1,2,5,6], b[1,4,5], c[1,2,5], d[2,5], e[1,6], ] </code></pre> <p>I would like to generate a new structure, a list of groups, with each group having</p> <ul> <li>all the (sub)sets of nodes that appear in multiple sets</li> <li>references to the original sets those nodes belong to </li> </ul> <p>So the above data would become (order of groups irrelevant).</p> <pre><code>group1{nodes[2,5],sets[a,c,e]} group2{nodes[1,2,5],sets[a,c]} group3{nodes[1,6],sets[a,e]} group4{nodes[1,5],sets[a,b,c]} </code></pre> <p>I am assuming I can get the data in as an array/object structure and manipulate that, and then spit the resulting structure out in whatever format needed.</p> <p>It would be a plus if:</p> <ul> <li>all groups had a minimum of 2 nodes and 2 sets. </li> <li>when a subset of nodes is contained in a bigger set that forms a group, then only the bigger set gets a group: in this example, nodes 1,2 do not have a group of their own since all the sets they have in common already appear in group2. </li> </ul> <p>(The sets are stored in XML, which I have also managed to convert to JSON so far, but this is irrelevant. I can understand procedural (pseudo)code but also something like a skeleton in XSLT or Scala could help to get started, I guess.)</p> http://stackoverflow.com/questions/333994/where-can-i-learn-how-to-combine-algorithms-and-data-structures 6 Where can I learn how to combine algorithms and data structures ? csl 2008-12-02T13:58:00Z 2009-11-26T15:28:31Z <p>After reading an introductory book on algorithms and data structures I am now craving for examples on how to combine these for optimal efficiency.</p> <p>For instance, you can combine hashmaps with specific sorting algorithms to create a simple text search program.</p> <p>Is there any good book or online resource for this?</p> <p>(I have already ordered <a href="http://netlib.bell-labs.com/cm/cs/pearls/" rel="nofollow">Programming Pearls</a>, which looks great, but I want to learn <em>more</em> about this.)</p> http://stackoverflow.com/questions/1801391/what-is-the-best-algorithm-for-checking-if-a-number-is-prime 1 What is the best algorithm for checking if a number is prime? [closed] AraK 2009-11-26T03:30:49Z 2009-11-26T12:50:56Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1032427/efficient-storage-of-prime-numbers">Efficient storage of prime numbers</a> </p> </blockquote> <p>Just an example of what I am looking for: I could represent every odd number with a bit e.g. for the given range of numbers (1, 10], starts at 3:</p> <pre><code>1110 </code></pre> <p>The following dictionary can be squeezed more right? I could eleminate multiples of five with some work, but numbers that end with 1, 3, 7 or 9 must be there in the array of bits. Hope this would clarify what I want.</p> <p>I am looking for the best algorithm, to check if a number is prime i.e. a boolean function:</p> <pre><code>bool isprime(number); </code></pre> <p>I would like to know the best algorithm to implement this functionality. Naturally, there would be a data structure I could query. I <strong>define the best algorithm</strong>, to be the algorithm that produces a data structure with lowest memory consumption for the range (1, N], where N is a constant.</p> http://stackoverflow.com/questions/1800189/easy-way-to-display-the-contents-of-data-structures-in-c 2 easy way to display the contents of data structures in C ? zlack 2009-11-25T21:48:18Z 2009-11-26T06:10:21Z <p>For debugging purposes, I find it useful to display the contents of data structures. (In Python for example, I would just do "print some_dict_name").</p> <p>Can this be achieved in C this easy too by using a standard library, or do I have to implement this myself depending on the data structure ?</p> <p>Consider the following code, where I have to iterate over the StructArray again to display all of its contents.</p> <pre><code>#include &lt;stdio.h&gt; struct SomeStruct { int id; }; int main() { struct SomeStruct StructArray[10]; int x = 0; for (x = 0; x &lt; 10; x++) { StructArray[x].id = x; } for (x = 0; x &lt; 10; x++) { printf("StructArray[%d].id = %d\n", x, StructArray[x].id); } return 0; } </code></pre> http://stackoverflow.com/questions/1800747/data-structure-problem-dont-want-to-store-a-list-as-text 0 Data Structure problem, don't want to store a list as text Craig 2009-11-25T23:48:46Z 2009-11-26T00:02:20Z <p>All - I need some help designing a table for a Postgre SQL database. I have a table of products ie; </p> <p>CREATE TABLE products (<br> <code>product_id</code> integer PRIMARY KEY,<br> <code>product_name</code> text,<br> price numeric); </p> <p>INSERT INTO products (<code>product_id</code>, <code>product_name</code>, price) VALUES<br> (DEFAULT, 'Purple Widget', '5.50'),<br> (DEFAULT, 'Green Widget', '1.50'),<br> (DEFAULT, 'Yellow Widget', '5.50'),<br> (DEFAULT, 'Spotted Widget', '6.50'),<br> (DEFAULT, 'Extra Large Purple Widget', '102.50'),<br> (DEFAULT, 'Extra Large Spotted Widget', '101.50'); </p> <p>I want to start selling a package of products (multiple products, one price). I am trying to figure out a structure for a packages table. Two options I don't like are - </p> <p>CREATE TABLE packages (<br> <code>package_id</code> integer PRIMARY KEY,<br> <code>package_name</code> text, <code>package_products</code> varchar(50),<br> price numeric); </p> <p>INSERT INTO packages (<code>package_id</code>, <code>package_name</code>, <code>package_products</code>, price) VALUES<br> (DEFAULT, 'Small Widgets', '0,1,2,3', '6.25'),<br> (DEFAULT, 'Large Widgets', '5,6', '200.00'); </p> <p>or <p> CREATE TABLE packages (<br> <code>package_id</code> integer PRIMARY KEY,<br> <code>package_name</code> text, <code>product_id1</code> integer,<br> <code>product_id2</code> integer,<br> <code>product_id3</code> integer,<br> <code>product_id4</code> integer,<br> <code>product_id5</code> integer,<br> price numeric); </p> <p>INSERT INTO packages (<code>package_id</code>, <code>package_name</code>, <code>product_id1</code>, <code>product_id2</code>, <code>product_id3</code>, <code>product_id4</code>, <code>product_id5</code>, price) VALUES<br> (DEFAULT, 'Small Widgets', '0', '1' ,'2', '3', NULL, '6.25'),<br> (DEFAULT, 'Large Widgets', '5', '6', NULL, NULL, NULL, '200.00'); </p> <p>I can't move the packages logic to the products table because each product could be in multiple packages. Both of those options above require a lot of work at the web layer to make work, plus they both seem really inefficient.</p> <p>Ideas? Thanks in advance! </p> http://stackoverflow.com/questions/1794919/finding-the-index-of-an-entry-in-a-linked-list-in-better-than-on-time 2 Finding the index of an entry in a linked list in better than O(n) time... jeffamaphone 2009-11-25T05:48:56Z 2009-11-25T16:58:30Z <p>I have a scenario where I'm pushing change-lists to another system. Each list contains zero or more inserted, updated or deleted notifications.</p> <p>Inserting is easy; the notification contains the target index and a pointer to the item. Updating is easy; I pass a pointer to the item. </p> <p>Deleting seems straight-forward; I need to pass the index of the item to delete, but how do I know the index? Indexes start at zero and must be contiguous, but I make them up at insertion time. So I need to keep track of the index I make up for each item.</p> <p>I can do this with, for example, a map: <code>std::map&lt;item*, int&gt;</code>, but then when I remove an item, I have to go re-number everything past it, which is O(N).</p> <p>These lists of items are going to be large to the point where O(N) iteration is not acceptable. I'm sure this problem has been solved, I just don't know what the solution would be called. Searching for anything related to "linked list" creates a ton of noise.</p> <p>One possible solution is a skip-list, where each node in the sublists knows how many nodes in the main list it skips, and since searching a skip list is O(log N) we can keep track as we go and find the index in O(log N) and also delete items in O(log N). </p> <p>However implementing a skip-list seems like overkill here... is there a simpler solution?</p> <p>EDIT:</p> <p>Thanks all for your suggestions, but I think I've convinced myself the skip list is the right way to solve this problem here. </p> http://stackoverflow.com/questions/1796903/net-framework-built-in-interfaces-recommendations-when-building-a-custom-data-s 2 .NET Framework built-in interfaces, recommendations when building a custom data structure? Ash 2009-11-25T13:27:51Z 2009-11-25T13:47:06Z <p>I'm implementing an AVL binary tree data structure in C# .NET 2.0 (possibly moving to 3.5). I've got it to the point where it is passing my initial unit tests without needing to implement any framework level interfaces. </p> <p>But now, just looking through the FCL I see a whole bunch of interfaces, both non-generic and generic that I <em>could</em> implement to ensure my class plays nicely with language features and other data structures. </p> <p>At the moment the only obvious choice (to me at least) is one of the Enumeration style interfaces to allow a caller to use the tree in a foreach loop and possibly with Linq later on. But which one (or more)? </p> <p>Here are the interfaces I'm considering at present: </p> <ul> <li>IEnumerable and IEnumerable<code>&lt;T&gt;</code></li> <li>IEnumerator and IEnumerator<code>&lt;T&gt;</code></li> <li>IComparable and IComparable<code>&lt;T&gt;</code></li> <li>IComparer and IComparer<code>&lt;T&gt;</code></li> <li>ICollection and ICollection<code>&lt;T&gt;</code></li> <li>IEquatable and IEquatable<code>&lt;T&gt;</code></li> <li>IEqualityComparer and IEqualityComparer<code>&lt;T&gt;</code></li> <li>ICloneable</li> <li>IConvertible</li> </ul> <p>Are there any published guidelines, either online or in book form, that provide recommendations regarding which framework interfaces to implement and when? </p> <p>Obviously for some interfaces, if you don't want to provide that functionality, just don't implement the entire interface. But it appears there are certain conventions in the FCL classes (such as Collection classes) that perhaps we should also follow when building custom data structures.</p> <p>Ideally the recommendations would provide guidance on such questions as when to use IComparer or IEqualityComparer, IEnumerable or IEnumerator? Or, if you implement a generic interface, should you also implement the non-geneic interface? etc.. </p> <p>Alternatively, if you have guidance to offer based on your own experiences, that would be equally useful.</p> http://stackoverflow.com/questions/1795933/deleting-a-loop-in-singly-linked-list 2 Deleting a loop in singly linked list Madhan 2009-11-25T10:13:43Z 2009-11-25T10:28:19Z <p>A loop may occur in singly linked list (SLL).<br> To delete the loop in the list, first we need to detect the loop in the SLL and then delete the loop.</p> <p>Can any one tell how to delete the loop in a SLL with pseudo code?<br> Can we do it using 3 pointers?<br> Is there any alternate to accomplish the task?</p> http://stackoverflow.com/questions/1795527/how-java-priority-queue-is-suppose-to-work 3 How java priority Queue is suppose to work? misterfixit 2009-11-25T08:53:07Z 2009-11-25T09:02:19Z <p>Short story, I'm implementing a graph and now I'm working on the Kruskal, I need a priority queue. My definition of a priority queue is that the element with the smallest key would come first? Is this wrong? Because when I insert the weighted edges(or numbers) in the queue they don't end up sorted. </p> <pre><code>PriorityQueue&lt;Integer&gt; tja = new PriorityQueue&lt;Integer&gt;(); tja.add(55); tja.add(99); tja.add(1); tja.add(102); tja.add(54); tja.add(51); System.out.println(tja); </code></pre> <p>That would print out this; [1, 54, 51, 102, 99, 55]. This is not sorted like I want them to be! And yes I made a comperator that goes into the priority queue that extracts the number from the edge object and compares based on that int. So this should work, or have I just completely misunderstood the entire concept of how this data structure works? </p> http://stackoverflow.com/questions/1781207/python-data-structure-object-to-model-static-multidimensional-table 1 Python data structure/object to model static multidimensional table David Marble 2009-11-23T05:10:43Z 2009-11-25T07:56:14Z <p>I'm just getting back into coding after a few year hiatus and I'm trying to model multi-tiered static forms in a way that lets me grab and perform operations on a specific form level or an entire sub-tree.</p> <p><strong>Example Form hierarchy:</strong></p> <ul> <li>MyForm <ul> <li>Question 1</li> <li>Part 1 <ul> <li>Question 1.1</li> </ul></li> <li>Part 2 <ul> <li>Question 2.1</li> <li>SubPart 1 <ul> <li>Question 2.1.1</li> <li>Question 2.1.2</li> </ul></li> </ul></li> <li>Question 2</li> </ul></li> </ul> <p>Each Question will have multiple attributes (question text, whether it's a required field, etc.) and Questions can be at any level of the hierarchy. </p> <p>I'd like to be able to do something like this:</p> <pre><code>&gt;&gt;&gt; MyForm.getQuestionObjects() [Question1, Question1_1, Question2_1, Question2_1_1, Question2_1_2, Question2] &gt;&gt;&gt; MyForm.Part2.getQuestionObjects() [Question2_1, Question2_1_1, Question2_1_2] </code></pre> <p>and/or stuff like:</p> <pre><code>&gt;&gt;&gt; # Get questions (return class members) &gt;&gt;&gt; MyForm.SubPart1.getQuestions() (('2.1.1 text', otherAttributes), ('2.1.2 text', otherAttributes)) &gt;&gt;&gt; # Get questions -- but replace an attribute on 2.1.2 &gt;&gt;&gt; MyForm.Part2.getQuestions(replace_attr('Question_2_1_2', 'text', 'New text')) (('2.1.1 text', otherAttributes), ('New text', otherAttributes)) </code></pre> <p>I keep trying to do this with nested/inner classes, which are a big headache and not well-supported in python. But even if I can figure out a solution using nested classes, I keep wondering whether there's a much better way of storing this form info somewhere to make it easier for non-coders to edit (probably a plain text template), and then loading the data at run-time since it's static and I'll need it in memory quite often. The form data won't be updated more than say once per month. Regardless how I store the data, I'd like to figure out a good data structure to represent, traverse, and operate on it.</p> <ul> <li>Is there a way to make a tiered-attributes object like this?</li> <li>Could I do something like multidimensional named tuples?</li> <li>Any other ideas?</li> </ul> <p>Thanks for any comments.</p> http://stackoverflow.com/questions/1793439/heap-implementations 0 Heap Implementations lampshade 2009-11-24T22:39:58Z 2009-11-24T23:00:04Z <p>In a heap implementation of the ADT priority queue, the item with the highest priority value is always in the front or root of the array?</p> <p>Or is it, where the ADT priority queue that has the highest priority value is in the n-1 slot of the array?</p> http://stackoverflow.com/questions/1789304/independent-mvc-structure-need-an-advice 0 Independent MVC structure... need an advice bibi 2009-11-24T10:54:39Z 2009-11-24T12:05:55Z <p>hi, I'm tired of looking after a frame work for mvc implementation. i want to build a good MVC based structure of my own that will serve me in my projects. so here is my thinking I'd like to know what do you think. first of all. here is the folder structure:</p> <p><a href="http://www.tapuz.co.il/Forums2008/Popups/ShowAttach.aspx?file=http%3A//img2.timg.co.il/forums/1%5F135995768.png&amp;msgid=135995768" rel="nofollow" title="the folder structure">The folder structure</a></p> <h3>the Admin and the Site folders:</h3> <p>I assume that the controllers/views in the admin/site and are totally different one from each other, so it is necessary that they will be in independent in each folder. if the autoload in the admin or site folder will not find a view/controller in its folder he will look for it in the MVC folder </p> <p>the model, which is the db layer can be inside the MVC folder because it is shared to the entire project. a function like get_article_by_id can be used in the site and in the admin as well.</p> <h3>the MVC folder:</h3> <p>will hold the entire project models. and shared controllers/views.</p> <h3>the classes folder:</h3> <p>will be use as a framework folder, it will hold classes such as mailer,db that will implement php functions</p> <p>How does that sound to you?</p> http://stackoverflow.com/questions/1787667/is-there-a-net-data-structure-with-the-following-characteristics-of-a-binary-sea 2 Is there a .NET data structure with the following characteristics of a Binary Search Tree? tster 2009-11-24T03:52:23Z 2009-11-24T08:27:54Z <p>I know that SortedDictionary is a binary search tree (and it can almost do what I need to do!) but I can't figure out how to do everything I need in the correct complexity.</p> <p>So here are the constraints <em>(and the data structure which I know has it)</em></p> <ol> <li>Inserting and Deletion in <code>O(log n)</code> <em>(SortedDictionary)</em></li> <li>Search in <code>O(log n)</code> <em>(SortedDictionary &amp; SortedList)</em></li> <li>Iteration from one searched element to another in <code>O(log n) + O(m)</code> (where <code>m</code> is the number of elements in between) <em>(SortedList)</em></li> </ol> <p>As you can see, I don't know how to get SortedDictionary to do number 3. Basically what I need to do is get all the elements with a range without iterating the set.</p> <p>Please tell me if my question isn't clear.</p> http://stackoverflow.com/questions/1787361/ideal-data-structure-for-mapping-integers-to-integers 4 Ideal data structure for mapping integers to integers? Stanley 2009-11-24T02:12:13Z 2009-11-24T07:17:20Z <p>I won't go into details, but I'm attempting to implement an algorithm similar to the <a href="http://en.wikipedia.org/wiki/Boyer-Moore-Horspool%5Falgorithm" rel="nofollow">Boyer-Moore-Horspool algorithm</a>, only using hex color values instead of characters (i.e., there is a much greater range).</p> <p>Following the example on Wikipedia, I originally had this:</p> <pre><code>size_t jump_table[0xFFFFFF + 1]; memset(jump_table, default_value, sizeof(jump_table); </code></pre> <p>However, 0xFFFFFF is obviously a <em>huge</em> number and this quickly causes C to seg-fault (but not stack-overflow, disappointingly).</p> <p>Basically, what I need is an efficient associative array mapping integers to integers. I was considering using a hash table, but having a malloc'd struct for each entry just seems overkill to me (I also do not need hashes generated, as each key is a unique integer and there can be no duplicate entries).</p> <p>Does anyone have any alternatives to suggest? Am I being overly pragmatic about this?</p> http://stackoverflow.com/questions/1777720/hashtable-indexed-on-several-fields 1 Hashtable indexed on several fields Pierre Bourdon 2009-11-22T03:34:10Z 2009-11-23T09:09:28Z <p>Hello SO,</p> <p>I'm currently programming an OCaml module defining a type corresponding to a CPU register. The interface of this module is the following :</p> <pre><code>(* * Defines a type which represents a R3000 register. *) type t = | R0 (* Always 0 *) | AT (* Assembler temporary *) | V0 | V1 (* Subroutine return values *) | A0 | A1 | A2 | A3 (* Subroutine arguments *) | T0 | T1 | T2 | T3 | T4 | T5 | T6 | T7 (* Temporary registers *) | S0 | S1 | S2 | S3 | S4 | S5 | S6 | S7 (* Register variables *) | T8 | T9 (* Temporary registers *) | K0 | K1 (* Reserved for kernels *) | GP | SP | FP (* Global/Stack/Frame pointer *) | RA (* Return address *) (* * Conversion from/to [|0, 31|]. *) val of_int : int -&gt; t val to_int : t -&gt; int (* * Conversion to string for display. *) val of_string : string -&gt; t val to_string : t -&gt; string </code></pre> <p>However, I would like the implementation to be fast and not too repetitive. For example, I could code the of_int function like this :</p> <pre><code>let of_int = function | 0 -&gt; R0 | 1 -&gt; AT (* ... *) </code></pre> <p>But it would be awful and unmaintainable. I do not want to do this as it conflicts with my programming religion. Moreover, I would need to do this kind of dirty code not only one time, but for the four functions.</p> <p>The first solution I found would be to use a preprocessor (either Camlp4 or cpp) to generate the code I want. I find this to be overkill but would use this method if you can't help me with my second idea.</p> <p>After a bit of thought, I thought I could do something like this :</p> <pre><code>type regdescr = { reg : t ; name : string ; index : int } let regs = let htbl = Hashtbl.create 32 in let li = [ (* regdescr defs here *) ] in List.iter (Hashtbl.add htbl) li ; htbl </code></pre> <p>However, in this case, I must choose what field I want to hash. Is there another solution than using three different hashtables in this case ? Maybe a data-structure I do not know about is able to hash over three fields and perform searches on the three of them.</p> <p>Sorry for the long question for which the answer may be trivial :) .</p> http://stackoverflow.com/questions/1529117/what-is-the-best-way-to-use-nested-objects-with-subsonic-when-i-only-have-iquerya 1 What is the best way to use nested Objects with Subsonic when I only have Iqueryable for Foreign Key Relationships Mark Fruhling 2009-10-07T01:52:50Z 2009-11-23T03:00:03Z <p>I'd like to use Subsonic in a shopping cart application, but I'm trying to replace code that is using Session to store an Order object. That Order object has a collection or OrderDetail objects that are added to the collection through the shopping cart process. I'm impressed with what Subsonic can do and I think I'm missing how I could implement it in this project. What I need is:</p> <pre><code>Order.OrderDetails.Add(new OrderDetail()); </code></pre> <p>Right now Subsonic is creating the one-to-many relationship for me based on the foreign key in the OrderDetails table. But Order.OrderDetails is available as an Iqueryable interface. I would like more control over how the property is managed. How have other managed to use the Subsonic generated objects to hold data in memory before saving to the database?</p> http://stackoverflow.com/questions/405540/what-is-a-cyclic-data-structure-good-for 6 What is a cyclic data structure good for? Jim Robert 2009-01-01T22:06:09Z 2009-11-22T23:36:32Z <p>Hello,</p> <p>I was just reading through "Learning Python" by Mark Lutz and came across this code sample:</p> <pre><code> >>> L = ['grail'] >>> L.append(L) >>> L ['grail', [...]] </code></pre> <p>It was identified as a cyclic data structure.</p> <p>So I was wondering, and here is my question:</p> <h2><strong>What is a 'cyclic data structure' used for in real life programming?</strong></h2> <p>There seems to be a little confusion, which i think stems from the very brief code sample... here's a few more lines using the same object L</p> <pre><code> >>> L[0] 'grail' >>> L[1][0] 'grail' >>> L[1][1][0] 'grail' </code></pre> <h2><strong>edit</strong>: I'll be honest, I still don't really get it. can anyone give some code samples?</h2> http://stackoverflow.com/questions/1286751/difference-between-vertices-and-edges-graphs-algorithm-and-ds 0 Difference between vertices and edges [Graphs, Algorithm and DS] vito 2009-08-17T08:21:40Z 2009-11-22T18:07:41Z <p>I've just now started reading an Algorithms book that defined Graphs as follows:</p> <blockquote> <p>Graphs – which represent relationships between arbitrary pairs of objects. Figure 1.8(b) models a network of roads as a graph, where the vertices are cities and the edges are roads connecting pairs of cities. Graphs are likely the object in question whenever you seek a “network,” “circuit,” “web,” or “relationship.”</p> </blockquote> <p>Figure 1.8(b) is this: <img src="http://imgur.com/IXbLK.png" alt="alt text" /></p> <p>What confuses me here is the following line:</p> <blockquote> <p>... where the vertices are cities and the edges are roads connecting pairs of cities ...</p> </blockquote> http://stackoverflow.com/questions/1778871/how-do-i-determine-which-kind-of-tree-data-structure-to-choose 4 How do I determine which kind of tree data structure to choose? Jason Baker 2009-11-22T14:38:03Z 2009-11-22T15:11:51Z <p>Ok, so this is something that's always bothered me. The tree data structures I know of are:</p> <ul> <li>Unbalanced binary trees</li> <li>AVL trees</li> <li>Red-black trees</li> <li>2-3 trees</li> <li>B-trees</li> <li>B*-trees</li> <li>Tries</li> <li>Heaps</li> </ul> <p>How do I determine what kind of tree is the best tool for the job? Obviously heaps are canonically used to form priority queues. But the rest of them just seem to be different ways of doing the same thing. Is there any way to choose the best one for the job?</p> http://stackoverflow.com/questions/1737076/collection-of-sets-containing-no-sets-which-are-a-subset-of-another-in-the-collec 4 Collection of sets containing no sets which are a subset of another in the collection Mark Wassell 2009-11-15T09:25:38Z 2009-11-22T06:10:18Z <p>I am looking for an abstract data structure which represents a collection of sets such that no set in the collection is a subset of another set in the collection.</p> <p>This means that on insert the following conditions will be met:</p> <p>A. Inserting an element that is already a subset of another element will return the original collection.</p> <p>B. Inserting an element that is a superset of any other elements will result in a collection with the superset added and the subsets removed.</p> <p>Assuming an ordering on the elements of the set, then a prefix tree can be used to represent the collection. This permits condition A to be handled very quickly (ie it takes no longer to check the condition than it would to insert the subset) however meeting condition B takes time. </p> <p>I am wondering if there is data structure that allows B to be met quickly as well.</p> http://stackoverflow.com/questions/832027/three-item-hashmap-without-internal-iteration 0 three item HashMap without internal iteration quinn 2009-05-06T22:08:00Z 2009-11-22T05:58:38Z <p>What is the best way to implement a three item hashMap? For example, I would like to use a regular String key , but have it map to two different objects. The idea is like having a list of lists, except that the first item is a key.</p> <p>I am trying to avoid iterating through the list ( so the behavior is like a hashmap ). Would you agree the only way is to build a new Class? It seems a "HashMap3" object ( with methods of get1( key ) &amp; get2( key ) ) would be useful. I am unsure of how to set this up myself.</p> <p>How can I create the collection?</p> http://stackoverflow.com/questions/1773700/how-to-parallel-reduction-of-many-unequally-sized-arrays-in-cuda 1 How to: Parallel Reduction of many unequally sized arrays in CUDA? alifeofzen 2009-11-20T22:47:30Z 2009-11-21T13:07:13Z <p>Hi there</p> <p>I am wondering if anyone could suggest the best approach to computing the mean / standard deviation of a large number of relatively small but <strong>differently sized arrays</strong> in CUDA?</p> <p>The parallel reduction example in the SDK works on a single very large array and it seems the size is conveniently a multiple of the number of threads per block.. but my case is rather different:</p> <p>Conceptually I however have a large number of objects which each contain two components, <em>upper</em> and <em>lower</em> and each of these components has an <em>x</em> and a <em>y</em> coordinate. i.e. <em>upper.x, lower.y, upper.x, lower.y</em></p> <p>Each of these arrays is approximately 800 in length but it varies between objects (not within an object) e.g.</p> <pre><code>Object1.lower.x = 1.1, 2.2, 3.3 Object1.lower.y = 4.4, 5.5, 6.6 Object1.upper.y = 7.7, 8.8, 9.9 Object1.upper.y = 1.1, 2.2, 3.3 Object2.model.x = 1.0, 2.0, 3.0, 4.0, 5.0 Object2.model.y = 6.0, 7.0, 8.0, 9.0, 10.0 Object2.image.y = 11.0, 12.0, 13.0, 14.0, 15.0 Object2.image.y = 16.0, 17.0, 18.0, 19.0, 20.0 </code></pre> <p>Please note the above is just my way of representing the array and my data is not stored in C structs or anything like that, the data can be organised in whatever way I need. The point is that for each array the mean, standard deviation and eventually a histogram needs to be computed and within one particular object, ratios and differences between arrays need to be computed.</p> <p><strong>So how should I go about sending this data to the GPU device and organising my thread-block hierarchy?</strong> One idea I had was to zero pad all my arrays so they are of the same length, and have a group of blocks working on each object.. but it seems there are all sorts of problems with that method if it would work at all.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1775268/most-efficient-way-to-insert-two-rows-that-depend-on-each-other 0 Most efficient way to insert two rows that depend on each other. TheLizardKing 2009-11-21T11:45:08Z 2009-11-21T11:49:51Z <p>I have a site that is essentially a collection of links. A mysql database which stores users, links and votes. My links table has two foreign keys, user_id and vote_id. When a link is inserted into the database it will start with one vote so that means I need to insert a row into the votes table but they essentially depend on one another to exist. I need the ID of the links for the foreign key of the votes table and vice versa. My current "plan" is to insert a links row with a vote_id of 0, select the same row to get it's ID and then insert a votes row using the links row id as it's foreign key, select it's ID and update my original links row. This seems really inefficient but I need to make sure users votes are recorded for time keeping and eliminating duplicate votes. Am I going about this the wrong way?</p> http://stackoverflow.com/questions/2540/good-stl-like-library-for-c 10 Good STL-like library for C. Michiel de Mare 2008-08-05T16:30:37Z 2009-11-21T09:07:48Z <p>What are good libraries for C with datastructures like vectors, deques, stacks, hashmaps, treemaps, sets, etc.? Plain C, please, and platform-independent.</p> http://stackoverflow.com/questions/1668689/why-do-so-few-developers-understand-that-a-list-of-1-is-still-a-list 1 Why do so few developers understand that a list of 1 is still a list? [closed] George Jempty 2009-11-03T16:58:06Z 2009-11-21T00:32:17Z <p>Sorry for the rant but I've been encountering this lots over the last couple of weeks, but with internally developed software and third party software. And that is, that so few developers seem to understand that a list with 1, or even 0, entries, is still a list.</p> <p>Rather what I'm encountering is that when there is just one value, I'm being provided with that value, whereas when there is more than one value, I am being provided with a list. Needless to say this leads to me having to handle a single value as a special case.</p> <p>Again apologies for the rant. But there is a real question in here. Why do so few developers understand that a list of 1 is still a list? What is the mental block? Or is it just inexperience?</p> http://stackoverflow.com/questions/1768352/rendering-different-repeating-data 0 Rendering different repeating data rawsonstreet 2009-11-20T04:32:09Z 2009-11-20T17:50:11Z <p>What is the best method to display repeating data with slightly different controls or sub data? For example displaying an expanded list of questions and answers. Some questions will have answers, some will not. Some button controls would show for some items while not for others. </p> <p>In classic ASP I've used XML/XSL quite effectively for displaying data in this manner. In .NET I've used functions being called from a label with the HTML writer class to render controls dynamically and nested list views that would bind or not depending on existing data. </p> <p>I know I could also use XSL with .NET but my question is - is there a better method of displaying data this way? Inline IIf's and functions being called from the front end doesn't seem very clean.</p> http://stackoverflow.com/questions/827691/how-do-you-implement-a-circular-buffer-in-c 2 How do you implement a circular buffer in C? paxdiablo 2009-05-06T01:52:52Z 2009-11-20T16:22:27Z <p>I have a need for a fixed-size (selectable at run-time when creating it, not compile-time) circular buffer which can hold objects of any type and it needs to be <em>very</em> high performance. I don't think there will be resource contention issues since, although it's in a multi-tasking embedded environment, it's a co-operative one so the tasks themselves can manage that.</p> <p>My initial thought were to store a simple struct in the buffer which would contain the type (simple enum/define) and a void pointer to the payload but I want this to be as fast as possible so I'm open to suggestions that involve bypassing the heap.</p> <p>Actually I'm happy to bypass any of the standard library for raw speed - from what I've seen of the code, it's not heavily optimized for the CPU : it looks like they just compiled C code for things like <code>strcpy()</code> and such, there's no hand-coded assembly.</p> <p>Any code or ideas would be greatly appreciated. The operations required are:</p> <ul> <li>create a buffer with specific size.</li> <li>put at the tail.</li> <li>get from the head.</li> <li>return the count.</li> <li>delete a buffer.</li> </ul>