Tagged Questions
2
votes
2answers
139 views
Haskell <<loop>>
With "getIndex" I want the index of the first sublist which length is > y
The Output is:
[[],[4],[4,3],[3,5,3],[3,5,5,6,1]]
aufgabe6: <<loop>>
why getIndex does not work?
import ...
2
votes
3answers
76 views
Sorting lists in python issue
I started learning python few days ago (with no prior programming experience nor knowledge) and am currently stuck with the following thing I do not understand:
Let' say I have an unsorted list "b" ...
0
votes
1answer
47 views
Variables to store node while sorting linked list
I'm a distant learning student and this time I would ask community 'where to go'.
This program produce operations with linked list.
I understand the idea about three pointers to nodes and two ...
8
votes
5answers
105 views
Python list sorting dependant on if items are in another list
Say I have a list:
A = [1,2,3,4,5,6,7,8,9,0]
and a second list:
B = [3,6,9]
What is the best way to sort list A so that anything that matches an item in list B will appear at the beginning so ...
5
votes
2answers
67 views
python: how to sort lists alphabetically with respect to capitalized letters
I'm trying to sort a list alphabetically, where capital letters should come before lower case letters.
l = ['a', 'b', 'B', 'A']
sorted(l) should result in ['A','a','B','b']
I've tried these two ...
3
votes
2answers
85 views
Rearrange a list based on given order in c#
I have a list as follows:
{CT, MA, VA, NY}
I submit this list to a function and I get the optimum waypoint order list
{2,0,1,3}
Now I have to rearrange the list as per the order that is newly ...
15
votes
4answers
316 views
How to specify 2 keys in python sorted(list)?
How do I sort a list of strings by key=len first then by key=str?
I've tried the following but it's not giving me the desired sort:
>>> ls = ['foo','bar','foobar','barbar']
>>>
...
0
votes
2answers
46 views
C++ Sorting Custom Objects in a list
I am having trouble sorting a list of custom class pointers. The class I need to sort are events. These get assigned a random time and I need to do them in the right order.
#include <list>
...
0
votes
0answers
11 views
Operations in sortableAttributes (CListView)
I want to give some operation in sortableAttributes like difference between vote_up and vote_down.
Is it possible?
'sortableAttributes'=>array(
...
0
votes
3answers
138 views
sort() and reverse() functions do not work
I was trying to test how the lists in python works according to a tutorial I was reading.
When I tried to use list.sort() or list.reverse(), the interpreter gives me None.
Please let me know how I ...
-2
votes
0answers
81 views
Char, list, how to sort?
I have a linked list made with class,
it have to atributes
key[30]
value[30]
how can i sort that list by key value?
class Elem
{
public:
char key[size+1];
char value[size+1];
Elem ...
0
votes
1answer
54 views
Insertion sort linked list c++
Im trying to sort a filled linked list with random numbers. The function I have made doesnt work as it should. I can't see what is wrong, its not sorting the numbers properly. Would really appreciate ...
1
vote
1answer
66 views
Find a missing number in a list
Say I have a List [2,1,4,5], I would like to have a predicate that returns 3 as the missing element.
missing([], []).
missing([H|T], R) :- missing([H|T], H, R).
missing([], _I, []).
missing([H|T], I, ...
1
vote
1answer
55 views
Python Comparing lists averages sorting
I am currently working on a python problem that involves taking a list consisting of 2 sublists of numbers and an identifier, for a total of three things. The procedure name is compareTeams(lstTeams), ...
1
vote
1answer
42 views
Sort a list of objects containing list each with orderby
I have this object:
public class humanInfo
{
public string m_Name { get;set; }
public List<HumanAttributes> m_ListHumanAttributes { get; set;}
}
I want to sort this list based on the ...
2
votes
2answers
54 views
Sort a list based on subjective values [duplicate]
Say I have this list of precious rocks: Adamantite, Diamonds, Crystal, Gold, Silver, Bronze.
Each rock is an object which has a property named Rarity which is a string based on either or these ...
3
votes
1answer
88 views
List.Orderby in C# first orderby numbers that are even asc then same number that are odd decending
So I have a List that is called myDeliverable
myDeliverable contains an object called Buyer.
Buyer has a string street and a int housenumber
Now I want to order first by street alphabetically, ...
0
votes
2answers
30 views
List.Orderby in C# first aplabetical on one value then by lowest to highest on another value
So I have a List of values lets call the list:
private List<Deliverable> myDeliverables;
myDeliverables contains another object called Buyer. Buyer has a string Street and a int housenumber. ...
1
vote
3answers
123 views
Find the optimal ordering of elements
I have a list of logos (up to 4 color) that need to be printed. Each logo requires a setup time to mix paints needed for that logo. If I can sort the data so that two logos that use the same colors ...
1
vote
2answers
53 views
Sorting a list of objects
I'm trying to sort a list of objects depending on the return value of a method (call it Q()) in the classes that instantiate the object. Both classes Decaf and Regular derive from the same class, ...
-1
votes
2answers
51 views
how to sort a list of list of tuples in python?
how do you sort a list of list of tuples in python
for example: Note that the last elements of the tuples are same
a = [
[(1, 5, 6), (2, 2, 6), (3, 6, 6)],
[(6, 1, 3), (5, 7, 3), (4, 1, 3)],
[(5, ...
-1
votes
1answer
28 views
Lisp sorting and scoring
I am trying to make a score function using lisp. The idea is that I have a list as input. This list must be sorted and each value should get a mark (the firest one has the highest mark)
I tried ...
-1
votes
1answer
100 views
Strange efficiency of std::list.sort() [closed]
Ok, so the following:
I want to use a double linked list and want to sort the objects within it. The objects are of another class. The strange thing is: When I use a double linked list I created ...
1
vote
1answer
50 views
Sort keys in dictionary by value in a list in Python
I have seen this post and this post as well as many others, but haven't quite found the answer to my question nor can I figure it out.
I have a dictionary of lists. For example it looks like:
...
4
votes
1answer
46 views
Moving a list of ints to the front of a list
I have a List of Int64 (List A) that needs to moved infront of another List (Int64) (List B).
List B will ALWAYS contain the numbers from List A.
So say the List A has the following numbers:
1, 4, ...
0
votes
1answer
92 views
Python sort lists with lists inside
Suppose a list of lists, something like this:
lists=[[3,2,1,4],[6,4,2,8],[9,6,3,12]]
If I want to sort by lists[0]it should be sorted like this:
lists=[[1,2,3,4],[2,4,6,8],[3,6,9,12]] #can be ...
24
votes
2answers
597 views
Python: How to sort a list of dictionaries by several values?
I want to sort a list at first by a value and then by a second value. Is there an easy way to do this? Here is a small example:
A = [{'name':'john','age':45},
{'name':'andi','age':23},
...
0
votes
1answer
32 views
Order list by specific value within in list item
I would like to order my unordered list by a specific value inside my list items. I generate my list with a loop.
My looped list item looks like this. The value <?php echo $nyslutdatum; ?> is ...
0
votes
1answer
41 views
What is the optimal way to sort a list of dictionaries based on multiple keys and remove some of the dictionaries
What is the optimal(time) way to sort a list of dictionaries based on multiple keys and at the same time removing some of the dictionaries from the output?
I want the output to be a list of all ...
0
votes
2answers
75 views
Using bubble sort with a linked list
I'm trying to write a method that will sort objects of a linked list based on an integer variable (named priority) of each object. I've used bubble sort before with arraylists and had no trouble, but ...
0
votes
2answers
40 views
C Sort Input By First Value and Second Value Into A Linked List
I have been struggling with this for the past few days. DISCLAIMER: This is for a homework assignment. I have been working on it myself but I can't really figure out what I am doing incorrectly.
I am ...
0
votes
1answer
41 views
MIT Scheme List Sorted in Ascending order
I'm taking a practice exam for a course in programming that deals with MIT Scheme. One of the questions asks:
"Complete the procedure (in-order ls) to return the list ls, except stop just before the ...
1
vote
1answer
71 views
python function sorting alternating disks
sorry for the missing information just now!!
I need some help with my task here, it's basic python programming but I got stuck when implementing the function. Hope someone can help me!! thanks in ...
0
votes
1answer
86 views
Android: Sorting JSON objects by highest value
I want to sort my array (parsed from JSON) by highest value. I want to make a topscorelist.
My JSON file:
[
{
"naam": "Peter",
"wedstrijden": "10",
"doelpunten": "4"
},
{
...
0
votes
0answers
16 views
Sequence merging between two semi-synchronized lists
I am facing an interesting problem and I wanted to see if anyone else tackled this situation before I spend days theorizing.
I have 2 systems. The first system maintains a sorted list of data. Lets ...
0
votes
1answer
68 views
Implementing a Selection Sort on an Array Based List in C
My question is what am I doing wrong. The insert fucntion doesn't work correctly. I am unable to retrieve the list itself. And because of this my selection sort won't execute. Any help would be ...
0
votes
2answers
40 views
Python: Sort a Nested List With Specific Criteria
As a beginner of Python I recently get stuck for a problem of sorting a nested list with specific criteria. I have a nested list like this:
nestedList=[['R2D2','1path1','1path2'],
...
4
votes
3answers
48 views
Sorting one list to match another in python
Suppose I have these lists:
ids = [4, 3, 7, 8]
objects = [
{"id": 7, "text": "are"},
{"id": 3, "text": "how"},
{"id": 8, "text": "you"},
{"id": 4, ...
2
votes
2answers
52 views
C++ Using different code to handle sorting of vector and list within the same program
I used typedef vector<MyDatatype> ls; to enable switching between list and vector by only changing the typedef definition. All works fine apart from sort function, which is implemented ...
-1
votes
1answer
54 views
Sorting a list of strings not working. No idea what I'm doing wrong or how to fix
I'm sorting a list of file names in alphabetical order however I get exception errors:
Error1 'System.Collections.Generic.List' does not contain a definition for 'Length' and no extension method ...
-1
votes
2answers
135 views
Using a Sort algorithm to sort a list of strings
I'm was wondering if anyone can show me how to sort a list of strings using a sorting algorithm in alphabetical order?
I know I can simply use List<string>.Sort() however it would be great to ...
1
vote
3answers
48 views
How can I sort list of object based on one of the object's variables
I need to sort an ArrayList of films best rated to worse (5 best - 1 worst). I am using Collections.sort() but the list comes out the same. what am i doing wrong
films.add(new Film().setRating(1));
...
0
votes
1answer
51 views
VBA transpose column vector by delimiter and include nullstrings
Below is an example of my data (column vector):
NAME
A
B
C
A
B
C
[blank cell]
B
C
NAME
A
B
C
Note that the [blank cell] in my document is actually just a blank cell, no formula data ...
0
votes
3answers
51 views
How to sort a list which has two set of elements into two alphabetically ordered sets list
I have a list with two kinds of elements - Free items and Paid items.
I want to sort the list such that the paid items will be in the first part of the list and the free items in the second part of ...
1
vote
3answers
62 views
c# Sorting a Custom List
I have the following list:
public class Address{
public string Number { get; set; }
public string Street { get; set; }
public string Suburb { get; set; }
}
List<Address> ...
0
votes
1answer
70 views
Sorting words by their freq in python
import sys
def candidateWord():
filePath = "sample.txt"
file = open(filePath,'r')
word_count = {}
for line in sys.stdin.readlines():
for word in line.split():
#words = ...
0
votes
1answer
53 views
Recursive list/sort with a redundant or missing cell
I'm using a single column of data that contains a few quirks. I have included the VBA code below the details of my problem.
An example of how the data is organized:
NAME
Court
Offe
Court
Offe
Offe
...
1
vote
1answer
56 views
Making a regular list from Irregular CSV data--Missing Columns
Backstory:
I received a 300+ page word doc of information in a single column. Using VBA and excel, I transposed the data using a delimiter (last names are the only all caps at the beginning of a ...
0
votes
4answers
113 views
python sort a list of objects based on attributes in the order of the other list
everyone,I need your help with python list sort.
Here is the thing:
I have two lists: one is a list of integers, the other is a list of objects, and the second object list has the attribute id which ...
0
votes
1answer
46 views
Sort list dict by key of dictionary inside a dictionary in Python
I have a data struct that below:
[
{
original_price: {
value: ""
},
promos: [ ],
local_id: "122863",
url: "link",
title: "abc",
current_price: {
value: 19.5
},
image: "link",
selections: {
color: ...




