Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
335 views

When exactly is an initializer temporary destroyed?

I constructed this experiment today, after answering some question struct A { bool &b; A(bool &b):b(b) { } ~A() { std::cout << b; } bool yield() { return true; } }; bool ...
14
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 ...
13
votes
4answers
350 views

R sorts a vector on its own accord - bad boy!

df.sorted <- c("binned_walker1_1.grd", "binned_walker1_2.grd", "binned_walker1_3.grd", "binned_walker1_4.grd", "binned_walker1_5.grd", "binned_walker1_6.grd", "binned_walker2_1.grd", ...
13
votes
7answers
5k views

Ordering by the order of values in a SQL IN() clause

I am wondering if there is away (possibly a better way) to order by the order of the values in an IN() clause. The problem is that I have 2 queries, one that gets all of the IDs and the second that ...
12
votes
3answers
11k views

Django: QuerySet order by method

Let's say I have the following model: class Contest: title = models.CharField( max_length = 200 ) description = models.TextField() class Image: title = models.CharField( max_length = 200 ...
12
votes
9answers
3k views

Best way to save a ordered List to the Database while keeping the ordering

I was wondering if anyone has a good solution to a problem I've encountered numerous times during the last years. I have a shopping cart and my customer explicitly requests that it's order is ...
10
votes
8answers
536 views

in C#, how do I order items in a list where the “largest” values are in the middle of the list

I have been stumped on this one for a while. I want to take a List and order the list such that the Products with the largest Price end up in the middle of the list. And I also want to do the ...
9
votes
3answers
106 views

Would this class have a Strict Weak Ordering

Say I had class/struct Foo struct Foo { int a, b; bool operator< (Foo const& r){ return a < r.a; } bool operator== (Foo const& r){ return ...
9
votes
4answers
332 views

Can Python's set absence of ordering be considered random order?

I'd like to know if the absence of element ordering of the Python's built-in set structure is "random enough". For instance, taking the iterator of a set, can it be considered a shuffled view of its ...
7
votes
2answers
220 views

JavaScript function order: why does it matter?

Original Question: JSHint complains when my JavaScript calls a function that is defined further down the page than the call to it. However, my page is for a game, and no functions are called until ...
7
votes
3answers
392 views

Adaptive Maps in Scala (or Java) Preserving Insertion Order

I would like to find and reuse (if possible) a map implementation which has the following attributes: While the number of entries is small, say < 32, underlying storage should be done in an array ...
7
votes
4answers
1k views

Java Memory Model: reordering and concurrent locks

The java meomry model mandates that synchronize blocks that synchronize on the same monitor enforce a before-after-realtion on the variables modified within those blocks. Example: // in thread A ...
6
votes
2answers
265 views

Different Sorting Orders - divide and conquer?

I'm trying to re-arrange a list of objects in different ways. Here I'll use integers but could be anything in this list. The example code below sorts 1,2,3,4,5,6,7,8 into the following order: ...
6
votes
3answers
286 views

What order are the Junit @Before/@After called?

I have an Integration Test Suite. I have a IntegrationTestBase class for all my tests to extend. This base class has a @Before (public void setUp()) and @After (public void tearDown()) method to ...
6
votes
1answer
147 views

Generating natural schedule for a sports league

I'm looking for an algorithm to generate a schedule for a set of teams. For example, imagine a sports season in which each team plays each other, one time as home team and the other as a visitor team ...
6
votes
4answers
461 views

NavigableMap vs. SortedMap?

Is there any reason to use SortedMap instead of NavigableMap, besides the JVM version? (NavigableMap has only been there since 1.6; SortedMap has been there since 1.2) I'm trying to find the value ...
6
votes
4answers
320 views

Does the foreach loop in C# guarantee an order of evaluation?

Logically, one would think that the foreach loop in C# would evaluate in the same order as an incrementing for loop. Experimentally, it does. However, there appears to be no such confirmation on the ...
6
votes
4answers
425 views

F# currying efficiency?

I have a function that looks as follows: let isInSet setElems normalize p = normalize p |> (Set.ofList setElems).Contains This function can be used to quickly check whether an element ...
6
votes
1answer
2k views

C#: How to implement IOrderedEnumerable<T>

I want to implement some various algorithms for practice, just to see how bad I really am and to get better :p Anyways, I thought I would try to use IEnumerable<T> and ...
6
votes
7answers
4k views

Ordering admin.ModelAdmin objects in Django Admin

Let's say I have my pizza application with Topping and Pizza classes and they show in Django Admin like this: PizzaApp - Toppings >>>>>>>>>> Add / Change ...
6
votes
11answers
2k views

Returning query results in predefined order

Is it possible to do a SELECT statement with a predetermined order, ie. selecting IDs 7,2,5,9 and 8 and returning them in that order, based on nothing more than the ID field? Statements SELECT id ...
5
votes
2answers
150 views

Sorting a list of lists by the seconds element in Haskell

I'm having a hard time when i try to order a list of lists by the second element, something like this list = [[_,B,_,_,_],[_,A,_,_,_],[_,C,_,_,_]] into this list = ...
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
2answers
4k views

Why super.onDestroy() in java - Android goes on top in destructors?

I am new in java development! May someone tell me... according to witch logic super.onDestroy(); in distractors goes on top? for example: protected void onDestroy() { super.onDestroy(); ...
5
votes
3answers
398 views

Custom Sort Order - How to not duplicate the Case statement

I have the following Db and query. The query takes two parameters: the sort column and the direction. However, I have to add custom sorting to the query (based on the Fuji should come first and Gala ...
5
votes
4answers
277 views

Is std::pair<int, std::string> ordering well-defined?

It seems that I can sort an std::vector<std::pair<int, std::string>>, and it will sort based on the int value. Is this a well defined thing to do? Does std::pair have a default ordering ...
5
votes
5answers
441 views

A clean algorithm for sorting a objects according to defined dependencies?

Given a list of classes inheriting from this base: class Plugin(object): run_after_plugins = () run_before_plugins = () ...and the following rules: Plugins can provide a list of plugins ...
5
votes
2answers
2k views

PHP's USORT Callback Function Parameters

This is a really esoteric question, but I'm genuinely curious. I'm using usort for the first time today in years, and I'm particularly interested in what exactly is going on. Suppose I've got the ...
5
votes
6answers
616 views

How to save a particular, mutable “order” into a Database

Suppose I have some objects, and I want the user to be able to reorder them in any way they wish, say, by dragging them around. So I'd have cheese muffins milk and then the user drags 'milk' to ...
4
votes
2answers
57 views

Custom, Efficient, Complex Ordering in Rails 3

I would like to know how to order efficiently in Rails. We all know that you can do simple ordering in Rails with the following methods: Model.order("created_at ASC").limit(10) In this case I'm ...
4
votes
5answers
54 views

How can I order a list of class based on a value of each class?

I have this class : public class MyClass { public MyClass() { } public int value { get; set; } } and I add 3 of this class on a List : MyClass class1 = new MyClass() MyClass ...
4
votes
1answer
51 views

Is it possible to get the Creation order/Insertion order of elements in a TCL array?

Tcl arrays are great for look up tables, but they are stored as "unordered sets" in theory. Is there anyway to iterate thru them in the order elements were added to the array without adding extra ...
4
votes
2answers
101 views

How do I reorder items in a TCollection?

I am trying to implement MoveItemUp and MoveItemDown methods that move a selected row up or down one index within a TCollection. The following code added to my subclass of TCollection does not work: ...
4
votes
5answers
198 views

What is the most efficient way to store a sort-order on a group of records in a database?

Assume PHP/MYSQL but I don't necessarily need actual code, I'm just interested in the theory behind it. A good use-case would be Facebook's photo gallery page. You can drag and drop a photo on the ...
4
votes
2answers
187 views

T-SQL Rounding to 0.0, 0.5, or 1.0

I have an interesting issue where I need to round the result of an AVG() function in a specific manner for use in the ORDER BY clause. These are for use in recipe ratings. Examples of the rounding ...
4
votes
5answers
357 views

SQL to get range of results in alphabetical order

I have a table, tblTags which works in much the same way as StackOverflows tagging system. When I view a tags page, let's say the tag Tutorial I want to display the 10 tags before and after it in ...
4
votes
1answer
161 views

Problem with CompareTo

I am trying to implement a sorted list. I have created the class I want to have stored in the list, but for some reason when I try and run the sort the sort method I get an exception thrown. It ...
4
votes
5answers
136 views

In SQL Server, is TOP deterministic by default when used on a table with a clustered index?

So I was trying to explain to some people why this query is a bad idea: SELECT z.ReportDate, z.Zipcode, SUM(z.Sales) AS Sales, COALESCE( (SELECT TOP (1) GroupName FROM dbo.zipGroups WHERE ...
4
votes
2answers
873 views

Does hibernate preserve the order of a LinkedHashSet and if so, how?

Does hibernate preserve the order of a LinkedHashSet and if so, how? In case this depends on the type of database, I'd like to know this for PostgreSQL. Background: I know what a LinkedHashSet is ...
4
votes
1answer
124 views

Algorithm for sorting loosely comparable data?

Let's say I have an unsorted list of four objects: [B, C, A, D]. All four objects are of the same type, and: (A > B), (C > D), (A != C or D) (B != C or D) (C != A or B) (D != A or B). By ...
4
votes
3answers
267 views

Python: How to custom order a list?

Obs: I know lists in python are not order-fixed, but think that this one will be. And I'm using Python 2.4 I have a list, like (for example) this one: mylist = [ ( u'Article', {"...some_data..."} ...
4
votes
3answers
174 views

Order a container by member with STL

Suppose I have some data stored in a container of unique_ptrs: struct MyData { int id; // a unique id for this particular instance data some_data; // arbitrary additional data }; // ... ...
4
votes
2answers
287 views

Defining your own Ord for a data type (Haskell)

I am attempting to make some data structures to solve a graph puzzle. I am trying to define an edge's comparison criteria, but I am not sure how. So far: data Edge = Edge (Set String) Bool How do I ...
4
votes
3answers
1k views

How to do case-insensitive order in Rails with postgresql

I am in the process of switching my development environment from sqlite3 to postgresql 8.4 and have one last hurdle. In my original I had the following line in a helper method; result = ...
4
votes
2answers
2k views

How can I restore the order of an (incomplete) select list to its original order?

I have two Select lists, between which you can move selected options. You can also move options up and down in the right list. When I move options back over to the left list, I would like them to ...
4
votes
3answers
145 views

How do I get the position of a result in the list after an order_by?

I'm trying to find an efficient way to find the rank of an object in the database related to it's score. My naive solution looks like this: rank = 0 for q in Model.objects.all().order_by('score'): ...
4
votes
2answers
601 views

Simplest distributed persistent key/value store that supports primary key range queries

I am looking for a properly distributed (i.e. not just sharded) and persisted (not bounded by available memory on single node, or cluster of nodes) key/value ("nosql") store that does support range ...
4
votes
5answers
926 views

C++ destructor & function call order

Suppose I have the following snipplet: Foo foo; .... return bar(); Now, does the C++ standard guarantees me that bar() will be called before foo::~Foo() ? Or is this the compiler/implementation's ...
4
votes
7answers
1k views

MySQL Orderby a number, Nulls last

Currently I am doing a very basic OrderBy in my statement. SELECT * FROM tablename WHERE visible=1 ORDER BY position ASC, id DESC The problem with this is that NULL entries for 'position' are ...
4
votes
4answers
403 views

Ordering a list of dictionaries in python

I've got a python list of dictionaries: mylist = [ {'id':0, 'weight':10, 'factor':1, 'meta':'ABC'}, {'id':1, 'weight':5, 'factor':1, 'meta':'ABC'}, {'id':2, 'weight':5, 'factor':2, 'meta':'ABC'}, ...

1 2 3 4 5 7