Containers Perfomance testing - memory error Programming Software Development by sidatra79 …(buffer + size, buffer_end); // duplicate elements random_shuffle(buffer, buffer_end); // test the containers: run(array_test, buffer, buffer_end, n); run(vector_pointer_test, buffer, buffer_end, n… Re: Containers Perfomance testing - memory error Programming Software Development by sidatra79 … all the forum users. Theoretically anybody could claim that STL containers are faster or the opposite ors th else. But why… Re: Containers and Data Structures same thing? Programming Software Development by Tom Gunn Containers are implemented using data structures, and the implementation of a container is not usually specified, so containers are a more abstract concept than data structures. C++ containers over C Programming Software Development by dimios … functions which can manipulate the data stored in the containers. c)also there are global functions (algorithms) which… can manipulate the data of the containers. Doesn't C has global functions as well? (reverse… clean. C offers essentially two ways to create generic containers: pointers to void (which aren't type safe)… users sortable content containers on users pages Programming Web Development by jcanaway alright im trying to make my content containers drag and drop / sortable on my… users pages so they can move there content containers around with using javascript and then they can… will print it out how they chose the containers to be arranged in the page and instead…help on how to start out also each containers is a template file and im using smarty… Re: C++ containers over C Programming Software Development by Ariste … pretty good analysis. In general, you should always favor C++ containers over C ones if you have access to them. Also… false arguments in favor of native C arrays over C++ containers is that some collection of data [I]must[/I] be… Re: C++ containers over C Programming Software Development by Narue … figure out the advantages of C++ STL containers over C.[/QUOTE] C++ has STL containers and C doesn't. Case closed, Sherlock… Re: C++ containers over C Programming Software Development by mrnutty >> why Turbo C++ is still the dominant compiler in universities that still teach C++ [citation?] And, if you are using C++, then definitely use C++ containers. else if you are using C, then don't use C++ containers , lol. Re: C++ containers over C Programming Software Development by dimios [CODE]C++ has STL containers and C doesn't. Case closed, Sherlock. I get the … problems with RAID and containers Hardware and Software Hardware by jime0726 hey all, having a problem with my containers on my dell server. when the server is booting, it …checks through all the containers to make sure theyre ok, then it gives me the… know the exact error) "missing members and are degraded, containers #0 and #1" then it posts both as critical… Re: users sortable content containers on users pages Programming Web Development by jcanaway … name etc. cuzz there are going to be 6 - 12 containers in my users pages so they can arrange how ever… it to be kind of similar to myyearbooks.com sortable containers on there users home page i am just asking for… How CSS Containers are control Digital Media UI / UX Design by pacouy … first time for all of this, Forum, DaniWeb, CSS & Containers, so thanks in advance for your support. (My first computer…, , I’m that old!) I'm trying to use CSS Containers (header, maincontent, footer) for my web page. The header has… Re: How CSS Containers are control Digital Media UI / UX Design by mindlesswizard … first time for all of this, Forum, DaniWeb, CSS & Containers, so thanks in advance for your support. (My first computer…, , I’m that old!) I'm trying to use CSS Containers (header, maincontent, footer) for my web page. The header has… multiple mdi containers Programming Software Development by gianrocks … am currently working on an app that needs nested mdi containers. but i always get an error saying: [B]"Form… stumbled upon a site showing how to do nested mdi containers but i totally ignored it not knowing that i'll… Debugging STL Containers Programming Software Development by Labdabeta … have been having this problem since I started using stl containers awhile ago. Basically, when I debug them with the default… to make the default Code::Blocks MinGW debugger treat stl containers like normal arrays/strings? Remove spaces between containers in Bootstrap v2.3.2 Digital Media UI / UX Design by EvaBozh I have a [JSFiddle](http://jsfiddle.net/vm3m74q1/13/) with the code for the footer for my website. There are three containers. I need to remove the spaces between those containers. How can I do this? C++, difficulties in choosing STL 's containers Programming Software Development by bencwai … vector?? In fact, I just know these three kinds of containers in STL.Are there any other choices in STL??? Thank… Floating divs containers with Css Programming Web Development by jcanaway alright im having so problems with my floating divs containers i am using three columns in my html part of … Sorting multiple array containers with related elements Programming Software Development by Tonka_view … sorting. Let's say I wanted to sort multiple array containers containing related elements. For example: [ICODE] Array1 Array2 Array3 Name… STL Containers - efficiency in searching a particular item Programming Software Development by ontherocks … index, I only know the value. Generalizing this to all containers which one would be more efficient and why? Re: STL Containers - efficiency in searching a particular item Programming Software Development by ontherocks … a number which could be accomplished just by using the containers. Re: STL Containers - efficiency in searching a particular item Programming Software Development by ontherocks Any pointers to urls where I could read about this aspect of containers and understand it more? Could I find some STL like containers from boost? Programming Software Development by stereomatching I like STL but the performance of the STL of visual C++ 2005 is not good enough, could I find some containers which looks like STL? Oops, I just found 1.48 release a brand new library--Container This library even support rvalue reference, so sweet. I love you, boost. Thanks Re: Containers Perfomance testing - memory error Programming Software Development by Kob0724 Holy cow kid. Can you give us a little more to work on then that? What error are you getting? Re: Containers Perfomance testing - memory error Programming Software Development by Salem As well as telling us what the error(s) are, also tell us which OS and compiler you're using. Your comments make mention in several places about breakage with specific implementations. Re: Containers Perfomance testing - memory error Programming Software Development by ivailosp [code] element_t* buffer_end = &buf[length[COLOR="Red"]-1[/COLOR]]; [/code] btw. this is not working on VS2008 // &*container.begin() gets us a pointer to the first element but it work on gcc :P Re: Lootable containers Programming Software Development by StephenopolousINC … */ package task_two; import task_two.containers.Trunk; import task_two.containers.Locker; import task_two.containers.BackPack; import java.util.ArrayList;… and open the template in the editor. */ package task_two.containers; /** * * @author Steven */ public class Container … Re: STL containers in shared memory Programming Software Development by kvprajapati Look at this article - [URL="http://www.ddj.com/cpp/184401639"]Creating STL Containers in Shared Memory[/URL] Containers and Data Structures same thing? Programming Software Development by lotrsimp12345 I would say yes since both are ways of storing information. Re: C++ containers over C Programming Software Development by daviddoria I'd say 'a' is the most important. 'b' is really part of 'a'. 'c' is probably referring to the functions in <algorithm>, which C certainly does not have. 'd' is correct, void pointers and preprocessor directives are nightmares! Dave