A container is a class, a data structure, or an abstract data type whose instances are collections of other objects.
0
votes
1answer
20 views
Acces button from container of buttons JAVA
I want to make an interface for a Minesweeper game in java and i have this for now:
Container pane = getContentPane();
pane.setLayout(new GridLayout(10, 10));
for (int i = 1; i <= 100; ...
0
votes
1answer
25 views
Equivalent container to java.util.HashMap but without value feild
I need a java container similar to HashMap that stores only objects (instead of key-value pairs) indexed by hash code. What is such a container called? Is there a java implementation of it?
2
votes
4answers
53 views
Large POD as tuple for sorting
I have a POD with about 30 members of various types and I will be wanting to store thousands of the PODs in a container, and then sort that container by one of those members.
For example:
struct ...
0
votes
1answer
11 views
Set up view controllers like Find My Friends iPad app
I want to set up my view controllers like the Find My Friends iPad app. Based on what I've found so far, I believe that I need to:
Use a container view controller
Make the tab bar controller the ...
2
votes
3answers
61 views
Record containing access to instantiation of generic package based on that record
This is really an annoying problem. I have a record type that wraps various base types and now I need it to be able to store a vector (from Ada.Containers.Vectors) in itself! I guess that's not ...
0
votes
1answer
22 views
JQUERY - Container match biggest height
I'm having some problems getting my container div to match the height of its children.
Basically what i'm trying to achieve is to get the container height to increase when the children inside are ...
0
votes
2answers
39 views
Copying from std container frm arbitrary source object
I created a read only iterator which allows me to use it in a for loop more conveniently then with the std iterators, similar to what boost does with the FOREACH (not as good but good enough :))
Now ...
0
votes
2answers
12 views
How to define child stages in ActionScript?
This is not really a programming question, so please let me know if I should move it somewhere else.
I want to know if there is a way to define a -parent- object (like a Panel, or a Stage inside the ...
0
votes
1answer
47 views
How to implementing O(1) lookup of item state belonging to container
I have a container that holds a lot (millions) of objects and must maintain a validated state for each item, eg:
class MyContainer<T>
{
bool IsValidated(T t);
}
Whether an item is ...
1
vote
1answer
134 views
Choosing the best stucture for my list of players
I am in trouble choosing the most pertinent structure for my data, here are the explanations:
I am actually working on a game project for school, a Bomberman like game in c++.
I am designing the Map ...
2
votes
1answer
55 views
Template class with template container
How can I declare template class (adaptor) with different containers as template arguments?
For example, I need to declare class:
template<typename T, typename Container>
class ...
1
vote
3answers
66 views
c++ light appendable array container
This relates to another question I asked a while back at Size of Qt containers: is QMap much larger than Qlist?.
Basically I would really like to re-implement a VERY LIGHT container which allows to ...
0
votes
1answer
28 views
bootstrap-responsive container width
I am using bootstrap-responsive and scaffolding successfully,
my question is if I can increase the container's width and keep the responsive capabilities
<div class="container" ...
1
vote
2answers
53 views
How do I handle thows/exceptions in a container class safely?
I am currently working on a container class that uses allocators to manage the resources.I'll try to give a short version of what I currently do to resize the container. (The real one is not ...
0
votes
1answer
34 views
Communication between container, delegate protocol not working?
I'm building an iPad app with storyboards. I have a "data page" (view) where I put one big container with a tableview which contains data. then I have 3 small containers above, also with tableviews, ...
0
votes
0answers
42 views
Efficent coding and creating containers in css
I need to be pointed in the right direction, I know this code is super sloppy, but I'm not sure how to position everything correctly in another way. My page ...
1
vote
1answer
64 views
Getting around container covariance in C++/STL
First lets start with the problem. I have a tree, and I want to do the following:
class Base {
std::vector<Base*> children_;
};
class DerivedA : public Base {
//adds some members
};
...
0
votes
1answer
39 views
Size of Qt containers: is QMap much larger than Qlist?
I am developing a software which maps information in 3D space. I use a container to hold this information. The container which I use is
QList< QList< QMap<float, QList<quint16> > ...
1
vote
1answer
52 views
Thread safe associative container
I have a map which looks like this: std::map<int, class A*> m. I have two threads: one of them is reading m and updating the values of the object contained and the other one is reading and ...
0
votes
2answers
41 views
Wrong behaviour of set<Vec3b>
I have a set of Vec3b to hold posible RGB pixel values.
std::set<cv::Vec3b> used_colors;
But behaves weird:
used_colors.insert(cv::Vec3b(100, 255, 255));
// this returns 1 although (100, ...
0
votes
1answer
41 views
Creating a class with a static member container holding all instances of said class?
My goal is to create a class which adds every instance created from it to a static member container, so that all instances can easily be accessed.
The context is a game where objects are created in ...
4
votes
2answers
89 views
Type classes, associated families -> containers, keys, and elements: Who is who?
Reading about type families on haskellwiki, I see the example
class Collects ce where
type Elem ce
empty :: ce
insert :: Elem ce -> ce -> ce
This makes sense to me, as I use my ...
2
votes
2answers
49 views
C++: use own class in a multiset container
at first I'm new here and English isn't my native language so apologize for any grammatical failures but I find this community really nice so I will try to ask my question as precise as I can.
I want ...
4
votes
4answers
94 views
Is there an stl container for this hierarchical model data?
For a platform-independent model layer, I have hierarchical data (strings, actually) that look like this:
Item A
SubItem A
SubItem B
SubItem C
SubSubItem A
SubSubItem B
SubItem D
Item B
Item C
...
4
votes
1answer
83 views
Vaadin - Lazy Query Container
I'm doing my project in Vaadin 7. I need to implement a Lazy Query Container for a Treetable. I will get data for the table from a web service.
Could someone please show how to use a Lazy Query ...
0
votes
2answers
34 views
How do I stop my 2-column layout from pushing the right floating div below?
I have a simple 2 column layout within a centered background div.
The two columns are inside a larger div which is centered in the page. The issue is that the right column may be 1-2 pixels out and ...
2
votes
2answers
60 views
Center 2 divs(Floating lef,right) in a container
I have tried multiple methods found on this website, and nothing seems to help.
I am trying to center 2 divs that are floating left and right in a container that has a 100% width.
CSS Snippet:
...
6
votes
1answer
106 views
should std::vector honour alignof(value_type)?
If I define a simple type with a certain alignment requirement, shouldn't a std::vector<t> of said type honour the alignment for every single element?
Consider the following example
typedef ...
0
votes
0answers
14 views
Wrapper with fixed width but header should have full width page
I have a problem with forming my header. I have a wrapper(container) with a fixed width so when i zoom my divs don't move to other positions, but my header takes the width of the wrapper now but i ...
0
votes
1answer
36 views
STL Map error C2679 in C++
im having a problem when trying to print out pairs of int & strings in an STL Map:
this is the code im using:
#include <iostream>
#include <utility>
#include <map>
using ...
0
votes
0answers
9 views
How do you initialize the container property of a struct
A structure, stationRecord is organized into a min binary heap...in order to perform Djikstra's algorithm on the heap, we need to first construct the heap out of the stationRecords and at the end of ...
-1
votes
1answer
36 views
Table 'width' css property does not prevent table property from exceeding the width of its container
Here is the offending website: http://giorgostzampanakis.pythonanywhere.com/ratings/ .
Try resizing the browser window until it's about 500 pixels wide and note how the table on the left ends up ...
-1
votes
0answers
26 views
My Component does not display in Container
public class ciCanvas extends Container
{
public void paint()
{
// I draw an image here, it works perfectly
Image MainMenuPlayBtImage =
...
1
vote
0answers
58 views
What is a good design for nested stl containers with multi-threading
I am having a hard time to figure out what can be a well-organized and efficient design for the following objects that I have as part of a bigger project.
Please note that I am having multiple ...
0
votes
1answer
42 views
Segmentation Fault when accessing a struct
I have a header file where I define methods. I am ultimately trying to implement a doubly linked list to store data of pairs.
this is cont.h
template <class Key, class T> class storage;
...
0
votes
2answers
33 views
container is positioned from bottom all the time
Can anyone suggest me please an efficient way to make one container to stick out from bottom of the browser window and be positioned :relative, be scrollable
Can I do it in pure CSS or there is a ...
3
votes
1answer
163 views
Practical summary/reference of C++11 containers/adapters properties? [closed]
I'm looking for a comprehensive summary/reference of important properties of the various C++11 standard containers and container adapters (optionally also including boost/Qt), but indexed by those ...
0
votes
0answers
11 views
Adding an Image to a container?
I would like to know how i can add an image to the container below, as to set it an my background image. The image is called Bg.gif, and can be accessed by Netbeans, but i just don't know how to put ...
0
votes
1answer
40 views
Are “Application Client Container” and “Embedded Enterprise Bean Container” the same?
Is the "Application Client Container" (see here) the same as the "Embedded Enterprise Bean Container" (see here)?
The two descriptions sound like the same thing to me, but I was wondering whether I ...
0
votes
2answers
44 views
Alternative to map<someKey , map<anotherKey,Identifier > >
I would like to assign some data for for each pair of (pointer to object, name of method in that object), to later efficiently retrieve that data knowing pointer to object and name of the method.
...
0
votes
2answers
129 views
C++ Invalid use of member function, did you forget the ( )?
I'm working on an assignment where I create my own container using templates. The container I am required to use is called Smaph, which takes in two pairs of numbers and does a variety of functions ...
3
votes
3answers
115 views
Is there a safe alternative to std::equal?
std::equal() is unsafe because the function cannot know whether it will overrun the length of the second container to be compared. That is:
std::vector< int > v( 100 );
std::vector< int > ...
-1
votes
0answers
48 views
creating testimonial box with divs in css not tables
new to css trying to implement a testimonial box
that would have a colored background different to main page color of site
with pic/image on left and text wrapped around with a little space
between ...
0
votes
2answers
61 views
How to put image div container over another div, yet keep it clickable? [closed]
I want to put my image over accordion div container and keep it clickable, so my image override it only visually. How I can do that?
My page that I need to edit is there.
That's what I want to make ...
21
votes
2answers
435 views
Lazy vs Strict implementations of data structures
There's a list of data structures having lazy and strict implementations:
Data.Map.Lazy and Data.Map.Strict
Data.IntMap.Lazy and Data.IntMap.Strict
Data.HashMap.Lazy and Data.HashMap.Strict
...
0
votes
3answers
62 views
floating 2 columns side byside in container div
I am trying float two columns called column_l and column_r side by side on an about page but the problem I am having is that its moves and messes up the footer and hangs outside of the container div.
...
-1
votes
1answer
53 views
How to put image div container over another div container?
I'm new to wordpress and website building. Just bought a theme and faced an issue.
I want to put my image over accordion div container. How I can do that? My theme has content building option, but as ...
0
votes
1answer
134 views
Docker container - how to configure so it gets a viable IP address when running in vagrant?
Docker (www.docker.io) looks terrific. However, after installing VirtualBox, Vagrant
... and finally Docker on a Mac, I'm finding it's not possible to access the service running in the Docker ...
1
vote
2answers
116 views
Why wasn't std::forward_list given a count() member function?
I understand why std::forward_list does not have a size() member function, since an O(1) version would mess up the complexity of certain splice() overloads, and since an O(N) version would be ...
0
votes
1answer
25 views
How to use multiple container in single page in DotNetNuke?
I am using a CMS (DotNetNuke) for creating a web application. I am newbe for dotnetnuke.
I searched on net for add or create multiple container for a single page and also installed some package from ...




