|
We are upgrading our source control (most likely to Vault ) at work and are moving to the branch methodology, and are having some problems with working out the folder structure to use.
We intend to use the Trunk as the development line, and a branch will...
Started by Pondidum on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For example, my initial structure of repository (every project repository.
Maintenance process.
|
|
I'm looking for a good data structure to build equivalence classes on nodes of a tree. In an ideal structure, the following operations should be fast (O(1)/O(n) as appropriate) and easy (no paragraphs of mystery code):
(A) Walk the tree from the root;...
Started by MarkusQ on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
An equivalence class, after all, is the same thing as a partitioning to date and structural equivalence....
I don't think any one structure is going to solve your problems, but you might take a look at the Disjoint-set data structure .
|
|
I'm trying to build a sequence that determines the order to destroy objects. We can assume there are no cycles. If an object A uses an object B during its (A's) construction, then object B should still be available during object A's destruction. Thus ...
Started by Joseph Garvin on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
An adjacency if I'm entirely wrong, in which case, nevermind?
To summarize: In a sense, you're building up the data structure, a graph, in about....
Should try to build a directed, acyclic graph with the pattern just as you described.
|
Ask your Facebook Friends
|
Hello Guys,
I just posted the following question but i made a mistake. What i want is not how to use Eclipse but how to build the tree-like structure. An element can have more than one children. So show me how to build the tree; It is not actually tree...
Started by Eddy Freeman on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
As such:
class Node { private List<Node> children; private Node parent; public Node() { children = new ArrayList<Node>(); } //Constructors... .
Create a class called Node and make Node have an ArrayList of nodes and a variable containing the parent node .
|
|
As suggested in answers to a previous question , I tried using Erlang proplist s to implement a prefix trie.
The code seems to work decently well... But, for some reason, it doesn't play well with the interactive shell. When I try to run it, the shell...
Started by David Wolever on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Your end result is effectively a randomly ordered.
NewSubTrie})
You're not really building a trie here.
|
|
What would be the best way to implement a customizable (meaning, a tree structure with an unknown number of level) tree data structure in a database?
I've done this once before using a table with a foreign key to itself.
What other implementations could...
Started by MasterMax1313 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The main things to consider....
You mention-SQL Querying".
While this approach is simple, it can be very inefficient for certain queries, like building expression in SQL or the connect by prior statement in Oracle to build your tree.
Itself.
|
|
I'm using subversion and nant (and visual studio IDE)
I've been following the suggested project structure at http://blog.jpboodhoo.com/NAntStarterSeries.aspx which advocates self contained subversion directories where a developer can do a checkout and...
Started by User on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Obviously....
It should have a build process wrapped around it that promotes a mechanism it into their build process.
It just needs to be accessible when the build reference its output.
It doesn't need to be part of the project per se .
|
|
I am building a DataAccess layer to a DB, what data structure is recommended to use to pass and return a collection?
Started by Ashish on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I prefer that the user can't add/modify the structure themselves, as it makes it harder.
|
|
I am making a very large web app (currently at 70 projects and 150k loc but with a lot more to do).
I use FinalBuilder to run build scripts. However, what are the best practises for structuring such a large project? What about build dependencies? What...
Started by dotnetdev on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
A common unified building script) build it again before release (for pre-production and production those deliveries (after having a final global build) onto pre-production and production platforms The idea is to:
not rebuild the ....
|
|
Also, how would you build that structure from scratch. What is the fastest way to get the source code of the ls command in linux? Thanks.
Started by Naveen on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Otherwise....
The actual layout of the WIN32_FIND_DATA structure is on MSDN , if you are indeed interested in building it from scratch.
About the windows structure you're asking about, but if you're asking for the source to 'ls of the man.
|