Sets Data Structure in Golang
I really like google golang but could some one explain what the rationale is for the implementors having left out a basic data structure such as sets from the standard library?
Is it conceivable to have millions of lists of data in memory in Python?
I have over the last 30 days been developing a Python application that utilizes a MySQL database of information (specifically about Norwegian addresses) to perform address validation and correction. The database contains approximately 2.1 million rows (43 columns) of data and occupies 640MB of disk space.
How do I express subtle relationships in my data?
“A” is related to “B” and “C”. How do I show that “B” and “C” might, by this context, be related as well?
How, when, and why do developers use custom data structures in python?
Python’s lack of pointers makes data-structure construction intuitively more challenging, and has so much built in functionality that, as an amateur, I can’t see when, why, or how you would create something beyond what’s already there.
Simple dependency tree diagram generator [closed]
Closed 11 years ago.
Representing domain objects
This is related to my recent question regarding naming awkward domain objects. A number of answers indicated I was using the wrong representation for the domain objects. To summarize, I chose to use an enum to represent some domain objects used as keys in lookups.
What data structure could a word processor use to map the user’s caret position/text selection to its internal representation of the document?
Word processors (e.g. Microsoft Word) display documents to the user as styled text. The user can select a part of this text and apply styles to it, and edit the text.
What are the differences between algorithms using data structures and algorithms using databases?
The General Question What are the differences between algorithms using data structures and algorithms using databases? Some Context This is a question that has been bugging me for some time, and I have not been able to come up with a convincing answer for it. Currently, I am working on strengthening my understanding of algorithms […]
Representing a rule in a ruleset
How to represent rules for a rule engine as objects?
Should a database table(s) structure match its intended data structure(s) in the logic?
This question branches out of this question, What are the differences between algorithms using data structures and algorithms using databases?.