Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
lists
- Page 1
Re: Justice Department Offers Grants Against Internet Predators
Digital Media
Digital Marketing
1 Month Ago
by JackRyan248
… months. > > A large part of the application description
lists
the various ways that groups being awarded grants must track…
Re: Remove Qemu/kvm snashots
Hardware and Software
Linux and Unix
1 Month Ago
by Dani
Salem linked to it (thank you!), but it seems succinct enough that I'm going to include it here in case the link were to disappear in the future. # qemu-img snapshot [ -l | -a snapshot | -c snapshot | -d snapshot ] filename -l:
lists
all snapshots -a: reverts the image to the snapshot -c: creates a snapshot -d: deletes the snapshot
Re: lists vs. arrays?
Programming
Software Development
17 Years Ago
by Jishnu
Lists
are harder to implement initially. But just compare sorting, searching, inserting an element, deleting an element etc. for both arrays and
lists
. You'd realise that
lists
are better. What is more,
lists
are dynamic.
Lists and tupples in Python...Beginners tutorial
Programming
Software Development
15 Years Ago
by lionaneesh
…code] output:- Aneesh Same slicing and indexing can go in
lists
also.... [B][B][I][U] List Methods:-[/U][/I][/…B][/B] There are some functions made for
lists
... like append ete etc.... The basic format of these…: Guys There's still some more functions...Dealing with
lists
but these are basic and the most used ones... …
Re: Lists and tupples in Python...Beginners tutorial
Programming
Software Development
15 Years Ago
by jcao219
… is this tricky stumbling point (which arises because Python's
lists
are mutable): [CODE]>>> a = [[None]*3]*3…
Re: lists vs. arrays?
Programming
Software Development
17 Years Ago
by Narue
…you have a lot of experience with it. Sorted
lists
are theoretically more efficient than sorted arrays because you …shifting around the other items. >You'd realise that
lists
are better. Not always. Assuming "list" means … list", there are advantages and disadvantages of both
lists
and arrays. The situation that you need to use…
lists vs. arrays?
Programming
Software Development
17 Years Ago
by xeption12
… I just do not understand what is the advantage of
lists
over arrays? I only see disadvantages, like: they're harder… on... So, i know i'm a n00b in c++
lists
for now, but can you please show me some concrete…
Re: lists vs. arrays?
Programming
Software Development
17 Years Ago
by Jishnu
[QUOTE]>You'd realise that
lists
are better. Not always. Assuming "list" means "…linked list", there are advantages and disadvantages of both
lists
and arrays. The situation that you need to use it…... I'm sorry for this one. [QUOTE]What is more,
lists
are dynamic.[/QUOTE]
lists and vectors
Programming
Software Development
19 Years Ago
by achala
hello, i have a few questions pls help me out with them coz am really confused .. 1. can
lists
or vectors passed as parameters in a function? 2. can the
lists
or vectors be returned ? i want to use
lists
or vectors in classes i need to knw if this is possible . pls help me out thankx.
Re: lists vs. arrays?
Programming
Software Development
17 Years Ago
by darkagn
One advantage of
lists
that I can think of is that it is often … array in the specific order that you want. Thus, sorted
lists
are easier to implement than sorted arrays.
Re: lists and vectors
Programming
Software Development
19 Years Ago
by WolfPack
1. can
lists
or vectors passed as parameters in a function? Yes 2. can the
lists
or vectors be returned ? Yes
lists within lists problems
Programming
Software Development
14 Years Ago
by Cesiumlifeboat
…'m writing my first program to make heavy use of
lists
within
lists
, and i've run into a rather unexpected problem…
Re: lists and vectors
Programming
Software Development
19 Years Ago
by achala
thankx ... am doing a project for school which involves a lot of file operations i wantedto avoid using an intermediate file as a buffer so thought of using
lists
/vectors which will be faster and easier .. but the cost overhead is higher but so is using the files so evens it out i think ... thaknx :)
lists in pascal
Programming
Software Development
17 Years Ago
by joekim
i have a problem here and i got to use
lists
to solve it!! there is a furniture factory producing different … this, someone's got an idea please? i must use
lists
!! thanks
Re: lists in pascal
Programming
Software Development
17 Years Ago
by Duoas
… understand your requirements. Is this a homework assignment to use
lists
? Or is this work-work? Do you have an existing… does the database update (synchronize with warehouse stock)? What do
lists
have to do with it? Is the list homogeneous or…
Lists, ListBoxes, textboxes and buttons problem
Programming
Software Development
14 Years Ago
by Dersev
Hello I have small problem with my
lists
where I am storing url links. I add my links … do this with "for loop" and indexing in
lists
? Thanks for help.
Re: lists within lists problems
Programming
Software Development
14 Years Ago
by woooee
….), and the same for Nplant (a list or list of
lists
?), there is no way to tell. Insert this code after…
Lists: change of line
Programming
Software Development
11 Years Ago
by Diego_4
… if I can change of line in a list of
lists
? tareas = [] > otraTarea = [tarea,year,month,day, hour, minute, second… what i have tried) #I have tried to concatenate two
lists
, but the program returns a message, in which it's…
Lists and Arrays
Programming
Software Development
10 Years Ago
by iConqueror
Both
lists
and arrays store data in one object(array or list). 1. In C# what is the difference between arrays and
lists
? 2. Can we store the same type in a list as an array? 3. Can an list store objects and references to other objects? 4. Where would we use a list instead of an array or vise versa? 5. What benefits does each have over the other?
Re: Lists and Arrays
Programming
Software Development
10 Years Ago
by deceptikon
> In C# what is the difference between arrays and
lists
? An array has a pre-defined size that cannot change. …
Lists & Passwords
Programming
Software Development
17 Years Ago
by tondeuse34
… across problem and wondering say if you have a 2
lists
called user_list and pass_list and you have a prompt for…
lists and a while loop
Programming
Software Development
15 Years Ago
by patto78
… 2 and 3 a c d b (the next four
lists
are all from "print iterations" within the a…
Lists and ArrayLists
Programming
Software Development
11 Years Ago
by Doogledude123
I know with
Lists
you can instantiate them to an ArrayList, but is this generally a good idea? Is it better to do 'List<?> list = new ArrayList<?>();' rather then 'ArrayList<?> aList = new ArrayList<?>();'?
Re: Lists and ArrayLists
Programming
Software Development
11 Years Ago
by JamesCherrill
^ again, yes. Or Set<Y extends X> where X is an interface.
Lists
implies order which may not be relevant or defined, so, for example, if you switch the implementation from a List to a Map (often happens) it's easy to return the keySet()
Re: Lists
Programming
Software Development
10 Years Ago
by JOSheaIV
Ahh
Lists
, one of the reasons I love C# so much. So … from it. Now if you are a little puzzled about
Lists
, just look at them like Arrays. They are similar in… concept, except
Lists
have a much larger size that has already been pre…
Re: lists
Programming
Software Development
15 Years Ago
by scru
This method is probably a bit less efficient than other suggestions you'll get, but it's just one line: [code=python] new_list = [item[:1] for item in old_list] [/code] Question. Why don't you use tuples instead of
lists
for the inner structure? They use less memory than
lists
.
Re: lists
Programming
Software Development
16 Years Ago
by LizR
I guess you havent looked on how you use
lists
.
Re: lists
Programming
Software Development
16 Years Ago
by rapture
…/C_Sharp_List_and_ArrayList_Collections[/url] And what does your textbook say about using
lists
? ( I assume this is a course project or assignment of…
Re: Lists
Programming
Software Development
15 Years Ago
by Basicgear
… doesnt work for console apps, idk. The first example for
lists
I found was in a starter kit I downloaded that…
Re: Lists
Programming
Software Development
10 Years Ago
by JOSheaIV
(Oh trust me, I encourage using
Lists
. The example I gave was because they are similar in concept). You are adding the scored properly to the list. To add items to a list you simply use "Add(value)". By adding the scores, do you mean like adding up all the values?
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC