Questions regarding efficient storing and representing data within a software application.
0
votes
3answers
95 views
Approximately how much is solid and broad knowledge of data structures and algorithms worth in the employment market?
I'm wondering how much I can boost my salary if I was to gain a strong and broad understanding of data structures and algorithms. I know the real basis but there are so many data-structures out there ...
0
votes
1answer
170 views
I need to create an employee schedule/appointments program, but I don't know how to set it up [on hold]
I work for a gym. I am the programmer, its just me, nobody else! Gets really frustrating when there's nobody to bounce conceptual ideas off of.
I'm getting rid of our archaic paper binder systems for ...
1
vote
2answers
241 views
Is it wise to store a big lump of json on a database row
I have this project which stores product details from amazon into the database.
Just to give you an idea on how big it is:
[{"title":"Genetic Engineering (Opposing ...
0
votes
4answers
87 views
Data Structure for Small Number of Agents in a Relatively Big 2D World
I'm working on a project where we will implement a kind of world simulation where there is a square 2D world. Agents live on this world and make decisions like moving or replicating themselves based ...
-1
votes
0answers
53 views
Best approach to accessing multiple data source in a web application [closed]
I've a base web application developed with .net technologies (asp.net) used into our LAN by 30 users simultanousley.
From this web application I've developed two verticalization used from online ...
0
votes
0answers
39 views
How does Google store its PageRank matrix?
I'm curious to know how Google stores the matrix that's used in the PageRank algorithm; and am looking for a data-structure for storing a very-large (not fitting in memory of any one computer) sparse ...
3
votes
2answers
73 views
Reconstructing a tree from depth information
I have a data structure that describes a tree. Nodes are ordered, with "depth" information, and knowing the order and the depth the tree can be reconstructed. I'm not entirely sure how to describe it ...
3
votes
1answer
270 views
Implementing basic data structures in programming interviews [closed]
I have been preparing to do my first technical interview in a month, and I have a question about implementing common data structures like stacks or linked lists. I plan to do the interview in either ...
17
votes
2answers
496 views
Is there a data structure for this type of list/map?
Perhaps there's a name for what I want, but I'm not aware of it. I need something similar to a LinkedHashMap in Java, but where it returns the 'previous' value if there's no value at the specified ...
2
votes
1answer
96 views
Treating a 1D data structure as 2D grid
Hopefully this is a good question. I am working with a native class that represents a 2D image as a 1D array. If you want to change one pixel, for example, you need to now how to derive the index from ...
0
votes
3answers
316 views
Why are algorithms and data structures important? [duplicate]
It seems like a lot of university-level computer science programs and programmer job interviews focus heavily on algorithms and data structures. I'm curious as to why universities and employers put so ...
1
vote
2answers
136 views
Pattern / methodology for representing large database records as objects
A bit of background information: We have an old database application written in Access that lets users monitor their workload, and the code is... 'procedural' might be too kind. The vast majority of ...
-1
votes
2answers
192 views
Importance of data structures in modern S/W development [closed]
During 1990s when there were no advanced frameworks/paradigms available for S/W development , knowledge on data structures was critical... which I can comprehend.
But nowadays, for most of the ...
0
votes
2answers
75 views
How to properly structure a collection of immutable constants
I'm in the design stages of a program that based upon input received, would select a particular category, and action within that category. The category, the action within in, and the value(s) related ...
1
vote
1answer
101 views
Inventory / Stock in multiple locations
I am working on a warehouse management system (WMS) that needs to support having stock in multiple locations. Could be in a different building, could be stored in n* places in a building (quick ...