list

How can I concisely initialize a safe collection in C++?

Possible Duplicate: C++: Easiest way to initialize an STL vector with hardcoded elements I'm learning C++ right now, and I'm looking for a way to quickly and easily initialize a "safe" collection (like a vector) with different values for each element. I'm accustomed to Python's concise list/tuple initializations, and I want to...

C++ Linker Error involving operator overload function

I have a List of type Node. I want to set a temporary Node equal to the Node at the front of the List but I keep getting a Linker Error: class Node { public: Node(); Node& operator = (const Node& n); }; 1>Linking... 1>main.obj : error LNK2019: unresolved external symbol "public: class Node & __thiscall Node::operator=(...

sorting lists of lists in haskell

i'm completely stumped on how to Write a function that, given a list of sets returns the sets split into sublists by size (and with the sublists ordered by the size of sets they contain). sample input *Main> allSets [[1,2],[8],[1,4,7,8],[5],[1,4],[1],[2,3],[1,2,5,8],[3,4,6,7],[1,2,3,4],[4],[5,6,7,8],[3,4],[3],[2,3,5,6],[7],[6],[2]] sam...

Export list as .txt (Python)

My Python module has a list that contains all the data I want to save as a .txt file somewhere. The list contains several tuples like so: list = [ ('one', 'two', 'three'), ('four', 'five', 'six')] How do I print the list so each tuple item is separated by a tab and each tuple is separated by a newline? Thanks ...

arraylist vs List<> in c#

what is the difference between arraylist and List<> in c#? is it only that List<> have a type while ArrayList don't? ...

how to add the icon, bold text, normal text in android list

hi how to make list with image, bold text and normal text an android ...

Pros/Cons on Lists with subsidiary objects

Hi, I'm again in the position to figure a way out to handle lists with subsidiary objects on our business objects. Actually, our code often looks like this: public class Object { private List<SubsidiaryObject> subsidiaryObjects = null; public List<SubsidiaryObject> SubsidiaryObjects { get { if (...

How do I store a dict/list in a database?

If I have a dictionary full of nested stuff, how do I store that in a database, as a string? and then, convert it back to a dictionary when I'm ready to parse? Edit: I just want to convert it to a string...and then back to a dictionary. ...

How to check if a parameter value is in a list of constants

I have a list of constants and want to check if a value passed to a method equals one of the constants. I know Enums which would be fine, but I need an int value here for performance reasons. Enum values can have a value, but I'm afraid the getting the int value is slower than using an int directly. public static final int a = Intege...

Sort a list from Arrays.asList() changes also the origin array ?

Hi all, I noticed a strange behavior (for me) when sorting a list retrieved with Arrays.asList(). It seems that after Collections.sort( list ), the origin array is also sorted ! How is it possible ? List<Rate> rates = Arrays.asList( arrayRates ); Collections.sort( rates, new RateEffectiveDateComparator() ); /* after that the rates lis...

Python passing list as argument.

If i were to run this code: def function(y): y.append('yes') return y example = list() function(example) print(example) Why would it return ['yes'] even though i am not directly changing the variable 'example', and how could I modify the code so that 'example' is not effected by the function? ...

Is there a Python equivalent of Ruby's 'any?' function?

In Ruby, you can call Enumerable#any? on a enumerable object to see if any of its elements satisfies the predicate you pass in the block. Like so: lst.any?{|e| pred(e) } In Python, there's an any function that does something similar, but on a list of booleans. Of course, for a reasonably-sized list, I'd just do: any(map(pred,lst)) ...

Is the result of List<T>.FindAll guaranteed to be in the same order as the original list?

If I've got a List with the following entries: Apple Banana Grape Cherry Orange Kiwi Is the result of fruit.FindAll(f => f.Length == 6) guaranteed to always be Banana Cherry Orange or could the order be different? ...

Select random item in unknown list

How can this be done more elegant and without creating new objects? List<Move> playerMoves = clone.getValidSuccessorMoves(0); List<Move> opponentMoves = clone.getValidSuccessorMoves(1); Move pmove = playerMoves[rand.Next(playerMoves.Count)]; Move omove = opponentMoves[rand.Next(opponentMoves.Count)]; MapManipulator.applyMove(clone.Map...

How make custom Thread Safe Generic List return the whole list in C#?

I am a threading noob and I am trying to write a custom thread safe generic list class in C# (.NET 3.5 SP1). I've read Why are thread safe collections so hard?. After reviewing the requirements of the class I think I only need to safely add to the list and return the list. The example shows pretty much all I want except it lacks the retu...

How to design a List Which Google shows it besideof Searched Site Result

I have always design sites and application Menu with UL/OL - LI and I want Google shows my Main Menu beside my Site . what should I consider ? ...

Python sorting - A list of objects

I'd like to use the somelist.sort() method to do this if possible. I have a list containing objects, all objects have a member variable resultType that is an integer. I'd like to sort the list using this number. How do I do this? Thanks! ...

Is it possible to create a list view that includes the hidden "Forms" folder?

Is it possible to create a list view for document libraries that includes the hidden "Forms" folder? I need this view in order to set the content type of uploaded document templates using the Lists web service. This is related to this question: http://stackoverflow.com/questions/1687063/access-list-items-in-hidden-forms-folder-using-lis...

IQueryable to ToList then Cache results

Hi Guys/Lady's , wondering can any one help me with the following problem/question. Am trying to cache Iqueryable converted tolist<> & get data back out of the cache. However, can't work out why it is not working. public class QDatalist { public int q_id { get; set; } public string title { get; set; } public int? marks { ge...

Getting rid of the margin between list style type and text

Well, thats the html code: <ul> <li>first item</li> <li>second item</li> </ul> And the css: ul, li { margin: 0px; padding: 0px; } Nothing fancy, right? And nothing to be proud of, it just shows a list without any margins or padding. Well, almost... What about this space there? I can't seem to get rid of it. Any ideas? :] ...