1
vote
2answers
192 views

Algorithm to reorder multiple non-adjacent elements in array to specific index

I've been trying to rack my head over this but it's just not working. I'm using some proprietary technology that only allows the move of a single element at a time. Super annoying. Think of it as ...
0
votes
2answers
118 views

Algorithm for expressing reordering, as minimum number of object moves

This problem arises in synchronization of arrays (ordered sets) of objects. Specifically, consider an array of items, synchronized to another computer. The user moves one or more objects, thus ...
3
votes
3answers
313 views

Sort integer array by given starting integer

I have an array int[] months = new int[4] {1, 4, 7, 10}; I would like to sort the array starting by the given value and sort the rest of the array in the original order. Let's say I want to start ...
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 ...