Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
6answers
1k views

Why is a Dictionary “not ordered”?

I have read this in answer to many questions on here. But what exactly does it mean? var test = new Dictionary<int, string>(); test.Add(0, "zero"); test.Add(1, "one"); test.Add(2, "two"); ...
20
votes
5answers
3k views

Preserving order with LINQ

I use LINQ to Objects instructions on an ordered array. Which operations shouldn't I do to be sure the order of the array is not changed?
15
votes
3answers
2k views

Project Order in Visual Studio Solution

In Visual Studio 2008, what determines the order in which projects appear within a solution folder? It's not alphabetical order, nor is it build order. I cannot find any way of altering the order in ...
14
votes
5answers
5k views

How to determine if a list of polygon points are in clockwise order?

Having a list of points, how do I find if they are in clockwise order? For example: point[0] = (5,0) point[1] = (6,4) point[2] = (4,5) point[3] = (1,5) point[4] = (1,0) would say that it is ...
11
votes
2answers
2k views

How do I set a default sort order for a rails model?

I would like to specify a default sort order in my model. So that when I preform a find(:all, ...) without an :order parameter it defaults to the order specified in the model, but specifying an ...
11
votes
6answers
1k views

When does a java object become non-null during construction?

Say you are creating a java object like so: SomeClass someObject = null; someObject = new SomeClass(); At what point does the someObject become non-null? Is it before the SomeClass() constructor ...
10
votes
5answers
234 views

Is the order of iterating through std::map known (and guaranteed by the standard)?

What I mean is - we know that the std::map's elements are sorted according to the keys. So, let's say the keys are integers. If I iterate from std::map::begin() to std::map::end() using a for, does ...
10
votes
4answers
4k views

MySQL Group By ordering

I have the following table: id time text otheridentifier ------------------------------------------- 1 6 apple 4 2 7 orange 4 ...
8
votes
2answers
2k views

How to get element order number

how can i get order number of some element by javascript/jquery? <ul> <li>Anton</li> <li class="abc">Victor</li> <li class="abc">Simon</li> ...
7
votes
4answers
108 views

PHP order array by subset

Ok, so I have two arrays. One is a larger bit of data: Array ( [12] => blah [36] => foo [58] => blah [60] => blah [72] => blah [90] => bar ) The other is ...
7
votes
4answers
2k views

Sort order of C# for each loop

I was wondering about the order that a foreach loop in C# loops through a System.Collections.Generic.List object. I found another question about the same topic, but I do not feel that it answers my ...
7
votes
2answers
4k views

Mapping a list in hibernate by ordering instead of an index-field

This works: <hibernate-mapping> <class name="Train" table="Trains"> <id column="id" name="id" type="java.lang.String" length="4"> <generator ...
7
votes
7answers
755 views

How do I store orders?

I have an app which has tasks in it and you can reorder them. Now I was woundering how to best store them. Should I have a colomn for the ordernumber and recalculate all of them everytime I change ...
6
votes
5answers
158 views

Python standard library function for rearranging a list

I am wondering if there is a standard library function in Python which will rearrange the elements of a list like below: a = [1,2,3,4,5,6,7] function(a) print a a = [1,7,2,6,3,5,4] It should get ...
6
votes
6answers
64 views

MySQL Ordering AA before A

I'm doing an e-commerce website for a client who sells lingerie, I've written up a bra size picker for them but they've come back to me today with a slight issue. With bra sizes, AA is smaller than ...
6
votes
3answers
193 views

How do I get a power set in a specific order?

there some solutions for calculating a power set, but these I found on google doesn't give the power set in the order, which I need it. For example, if I want the power set of (1,2,3,4) common ...
6
votes
3answers
277 views

SQL LIKE, how to order results by weighted occurance count?

The Problem I have my search term: "Yellow large widgets" I split the terms into it's 3 words: 1 = "Yellow"; 2 = "Large"; 2 = "Widgets"; I then search with: SELECT * FROM widgets WHERE ...
6
votes
2answers
2k views

change order of blocks via local.xml file in magento

Is it possible to change the order of already existing blocks via the local.xml file? I know you can change the order of a block with the after or before attribute, but how can one change those ...
6
votes
4answers
1k views

Mysql: Order by like?

assume that we are performing search using keywords: keyword1, keyword2, keyword3 there are records in database with column "name": 1: John Doe 2: Samuel Doe 3: John Smith 4: Anna Smith now ...
6
votes
4answers
4k views

How to switch position of two items in a Python list?

I haven’t been able to find a good solution for this problem on the net (probably because switch, position, list and Python are all such overloaded words). It’s rather simple – I have this list: ...
6
votes
2answers
2k views

LoadLibrary() fails to load DLL with manifest and private assembly

I am working on a Windows application (EXE) that uses multiple DLLs. Development is in VCExpress 2005 (VC 8.0), using C only. Some of these DLLs are plug-ins/add-ons/extensions that are dynamically ...
6
votes
1answer
521 views

How do I get LINQ to order according to culture?

Say I've got a list of strings with Swedish words: banan, äpple, apelsin, druva Now I want to get this list ordered (keep in mind that this is a very simplified version of the real query): var ...
6
votes
3answers
675 views

Is Perl guaranteed to return consistently-ordered hash keys?

Given something like foreach (keys %myHash) { ... do stuff ... } foreach (keys %myHash) { ... do more stuff ... } Is Perl guaranteed to iterate over the keys in a consistent order if the ...
6
votes
2answers
1k views

MySQL indices and order

This is a question that I've had forever. As far as I know the order of indices matter. So an index like [first_name, last_name] is not the same as [last_name, first_name], right? If I only define ...
6
votes
4answers
1k views

Why are the arguments to atan2 Y,X rather than X,Y?

In C the atan2 function has the following signature: double atan2( double y, double x ); Other languages do this as well. This is the only function I know of that takes its arguments in Y,X order ...
6
votes
2answers
2k views

MySQL: Sort GROUP_CONCAT values

In short: Is there any way to sort the values in a GROUP_CONCAT statement? Query: GROUP_CONCAT((SELECT GROUP_CONCAT(parent.name SEPARATOR " &raquo; ") FROM test_competence AS node, ...
6
votes
4answers
1k views

Is Java foreach iteration order over primitives precisely defined?

Example code: int a[] = new double[]{0, 1, 2, 3}; int result = 0; for (int i : a) result += i; Is the loop guaranteed to iterate across a[0], a[1], a[2], a[3] in that order? I ...
6
votes
7answers
2k views

How can I order entries in a UNION without ORDER BY?

How can I be sure that my result set will have a first and b second? It would help me to solve a tricky ordering problem. Here is a simplified example of what I'm doing: SELECT a FROM A LIMIT 1 ...
5
votes
6answers
97 views

Any implementation of Ordered Set in Java?

If anybody is familiar with Objective-C there is a collection called NSOrderedSet that acts as Set and it's items can be accessed as an Array's ones. Is there anything like this in Java? I've heard ...
5
votes
3answers
147 views

Which comes first? header guards, namespace and includes

I have been making files like this for awhile: Does the order make sense? or should the namespace and the #includes be swapped and why. #ifndef CLASSNAME_H // header guards #define CLASSNAME_H ...
5
votes
1answer
162 views

Split payment process on magento?

How can we split payment process on magento? Suppose i purchased a product from magento store worth of 1000 USD. Im having 500 USD in my credit card and 500 USD in my paypal account. Is it possible ...
5
votes
3answers
154 views

C++, are multiple-inherited constructors called multiple times?

Are multiple-inherited constructors called multiple times? And in what order are constructors called? Does this depend on the order in the inheritance list? Here is an example (it's only for making ...
5
votes
4answers
67 views

LINQ - How do I keep my (complex) results ordered?

I have LINQ query that is built up in a piecemeal fashion like so: var initialQuery = from item in MyContext where xxx == yyy select item; var furtherQuery = from item in initialQuery where bla ...
5
votes
1answer
87 views

Why does Oracle's varchar sort order not match the behavior of varchar comparison?

An SQL statement like select * from ( select '000000000000' as x from dual union select '978123456789' as x from dual union select 'B002AACD0A' as x from dual ) /*where ...
5
votes
2answers
124 views

SQL - how to determine which position/order/count my selected record is in?

Imagine I have a table: ID field1 field2 --- ------- ------ 111 1 11113 112 1 11114 113 1 44321 114 1 49339 115 2 ...
5
votes
2answers
208 views

jQuery append order

For all the simplicity I just cant see why this does not work. I need to append a div to the body of the document, then a copy of the same div again but hidden, then another div, then a copy of the ...
5
votes
4answers
165 views

C++ commands executing out of order

I am attempting to make a simple shell program, and looking at a few examples have seen that most people use getline() to get input, however I have been trying to use read() and noticed a weird bug ...
5
votes
3answers
466 views

Sorting a vector of (double precision) reals and obtain their order

in C++ would like to sort a lengthy (2^20) vector of reals, obviously sort() does the trick. Having used R before I was used to the nice order() function which yields the permutation that leads to the ...
5
votes
1answer
509 views

XML::Simple output element order from complex hash

I have already seen few answers on various places, in regards to setting the order of XML elements being returned by XMLout. However, I am not able to solve a problem using those answers/examples. I ...
5
votes
4answers
347 views

Google Collections ImmutableMap iteration order

I need combination of Google Collection ImmutableMap and LinkedHashMap — immutable map with defined iteration order. It seems that ImmutableMap itself actually has defined iteration order, at ...
5
votes
2answers
146 views

The order of data in memory

A few simple questions. const int gFirst; const int gSecond; struct Data { static int First; static int Second; int first; int second; }; Data data; Is it guaranteed that the ...
5
votes
3answers
2k views

How to Maintain order of insertion using collections

I want to add a key,value pair into a hashtable (or any other collection) but have to maintain insertion order. How can I do this? Like I'll add 1 as key "one" as value, 2 as key and "two" as value. ...
5
votes
1answer
208 views

Is there a way to change the draw order in WPF

Is there a way to change the draw order of Controls in a StackPanel without changing the actual ordering of these controls in the StackPanel? The reason I ask is that we have a button bar with margin ...
5
votes
2answers
1k views

Hibernate: order multiple one-to-many relations

I have a search screen, using JSF, JBoss Seam and Hibernate underneath. There are columns for A, B and C, where the relations are as follows: A (1< -- >) B (1< -- >) C A has a List< B > ...
5
votes
7answers
2k views

c++ std::map question about iterator order

I am a C++ newbie trying to use a map so I can get constant time lookups for the find() method. The problem is that when I use an iterator to go over the elements in the map, elements do not appear ...
5
votes
1answer
277 views

Get graphviz to draw nodes above edges

Is there any way to force graphviz to always draw the nodes above edges even if the edge is drawn over (or preferably under) the node? So far I have tried ordering them and different layer options ...
5
votes
2answers
676 views

Is it possible to keep the column order using the Python csv DictReader

For example, my csv has columns as below: ID, ID2, Date, Job No, Code I need to write the columns back in the same order. The dict jumbles the order immediately, so I believe it's more of a ...
5
votes
3answers
811 views

Order of items in a HashMap differ when the same program is run in JVM5 vs JVM6?

I have an application which displays a collection of objects in rows, one object = one row. The objects are stored in a HashMap. The order of the rows does not affect the functionality of the ...
5
votes
4answers
2k views

Python dictionary, keep keys/values in same order as declared

new to Python and had a question about dictionaries. I have a dictionary that I declared in a particular order and want to keep it in that order all the time. The keys/values can't really be kept in ...
5
votes
4answers
5k views

C# Winform UI Componets Layer Order

C# | Winforms When we add any UI or container in winforms, the later added component comes over the earlier added components, we can say it is in a higher layer..how to change that layer order or ...

1 2 3 4 5 20