0
votes
3answers
475 views

reorder List starting at given position

List: List<int> list1 = new List<int>(){ 0, 1, 2, 3, 4, 5, 6 }; let's say we want to reorder it. The beginning should be at number "2" // 2,3,4,5,6,0,1 or at number 5 // ...
0
votes
1answer
527 views

How to reorder a ul li list by clicking on an link or button?

I need to move some selected items from a list by clicking on a link or button. Giving 4 options to the user: Put all selected items once backward or forward, or instead put all to the top of the ...
1
vote
1answer
145 views

jQuery - Possible to auto restripe a list after removing 1 list item between the rest?

I've created a multi email submission form in a scrollable div and have properly succeeded in automatically setting each email as a list item so I can zebra stripe the submission. I also can ...
2
votes
3answers
3k views

Using jQuery to re-order and animate list items?

So, I've got a list of items, something like: <ul id="listHolder"> <li id="l1">List item 1</li> <li id="l2">List item 2</li> <li id="l3">List item ...
2
votes
1answer
440 views

C++ reorder std::vector elements using std::list of pointers

I ran into this problem when I tried to write out an new algorithm to reorder elements in std::vector. The basic idea is that I have std::list of pointters pointing into std::vector in such way that ...
0
votes
1answer
266 views

MYSQL: how to “reorder” a table with discontinued idno?

The following code assumes the idno(primary key) is continued and starts from 1. However, I set the id as auto increment and deletable. As time goes, idno may not start from 1 and could be ...
3
votes
4answers
328 views

What is the process of reordering one list based on the implied reordering resulting from sorting another list called?

I'm not interested in any particular algorithm; I just want to know if doing that has a common name that I'm just not aware of. To be specific, say I have X = [42, 0, 99] and Y = ["a", "b", "c"]. ...
0
votes
3answers
250 views

Reordering python list based on an algorithm or pattern

Here is a stumper for you math geeks out there. I have a python list that is just a sequence that looks like this: myList=[1,2,3,4,5,6,7,8,9,10,11,12,13,(...etc...),43] Unfortunately, the data ...
27
votes
14answers
5k views

User interface for reordering a list items

I have a list of items as a part of a web application. The question is how user could manipulate the order of items in the list (not the list sort order). The typical way is to use arrow buttons to ...