473,698 Members | 2,571 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Brainstorm with me on this

Hey all. I need your help in designing a solution. I'm building a small wine
cellar manager application as a side project. A wine cellar can consist of
several "walls", each of which can have X rows and Y columns.

I'm trying to figure out a way to illustrate how certain walls in a cellar
are positioned with respect to each other. Consider a simple wine cellar
with walls called: Top, Left, Middle and Right.

If I were to draw this in HTML, it would be something like this:

<table>
<tr>
<td colspan="3">Top </td>
</tr>
<tr>
<td>Left</td>
<td>Middle</td>
<td>Right</td>
</tr>
</table>

"Top" is ABOVE "Left"
"Top" is ABOVE "Middle"
"Top" is ABOVE "Right"

"Left" is UNDER "Top"
"Middle" is UNDER "Top"
"Right" is UNDER "Top"

"Left" is LEFT of "Middle"
Nothing is LEFT of "Left"
"Right" is RIGHT of "Middle"
Nothing is RIGHT of "Right"

Obviously the friendly names Top, Left, Middle, and Right are arbitrary ...

What would be a good way to capture this? Can anyone suggest a suitable data
structure?

I know this is somewhat off topic, but the front end of this is all aspx, so
it's a little relevant ;)
Nov 18 '05 #1
1 943
Hi George,

I see two strong ways of approaching this.

If the walls can be represented pretty much in a HTML table, simply
represent a table-like structure. The Cellar would have a BlocksHigh and
BlocksWide property. It would contain a collection of Walls, which would
each contain an array of Cell numbers they occupy. In your example,
BlocksHigh=2 and BlocksWide=3. Walls would consists of Top (1,2,3), Left
(4), Middle (5), Right(6), with the CellNumbers array parenthesis.

On the other hand, if the walls really cant be represented in a grid like
that, then you'll have to do a four-sided linked list type structure. The
Cellar would contain a NumberOfWalls property, and a TopLeftWall property,
which would contain in your example, the Top wall. The Wall structure would
contain four properties (each of type Wall), called Above, Below, LeftOf,
RightOf. Middle, in your example, would have Above="Top", Below=Null,
LeftOf="Left", RightOf="Right" .

How's that work

Alex Papadimoulis

"George Durzi" <gd****@hotmail .com> wrote in message
news:#O******** ******@tk2msftn gp13.phx.gbl...
Hey all. I need your help in designing a solution. I'm building a small wine cellar manager application as a side project. A wine cellar can consist of
several "walls", each of which can have X rows and Y columns.

I'm trying to figure out a way to illustrate how certain walls in a cellar
are positioned with respect to each other. Consider a simple wine cellar
with walls called: Top, Left, Middle and Right.

If I were to draw this in HTML, it would be something like this:

<table>
<tr>
<td colspan="3">Top </td>
</tr>
<tr>
<td>Left</td>
<td>Middle</td>
<td>Right</td>
</tr>
</table>

"Top" is ABOVE "Left"
"Top" is ABOVE "Middle"
"Top" is ABOVE "Right"

"Left" is UNDER "Top"
"Middle" is UNDER "Top"
"Right" is UNDER "Top"

"Left" is LEFT of "Middle"
Nothing is LEFT of "Left"
"Right" is RIGHT of "Middle"
Nothing is RIGHT of "Right"

Obviously the friendly names Top, Left, Middle, and Right are arbitrary ....
What would be a good way to capture this? Can anyone suggest a suitable data structure?

I know this is somewhat off topic, but the front end of this is all aspx, so it's a little relevant ;)

Nov 18 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
3359
by: James | last post by:
I have a from with 2 fields: Company & Name Depening which is completed, one of the following queries will be run: if($Company){ $query = "Select C* From tblsample Where ID = $Company Order By Company ASC";
5
2751
by: Scott D | last post by:
I am trying to check and see if a field is posted or not, if not posted then assign $location which is a session variable to $location_other. If it is posted then just assign it to $location_other I keep getting "Notice: Undefined index: location_other" referring to (!($_POST)) { $location_other = $location; } else
2
2726
by: Nick | last post by:
Can someone please tell me how to access elements from a multiple selection list? From what ive read on other posts, this is correct. I keep getting an "Undefined variable" error though... Form page************************************************************ <form action="/process.php" method="get" name="formOne" id="formOne"> <select name="owner" size="6" multiple id="owner"> <option value="one">one</option> <option...
2
2546
by: Alexander Ross | last post by:
I have a variable ($x) that can have 50 different (string) values. I want to check for 7 of those values and do something based on it ... as I see it I have 2 options: 1) if (($x=="one") || ($x=="two") || ... || ($x=="seven")) ... or 2) switch ($x){ case("one"):
0
3277
by: Dan Foley | last post by:
This script runs fine, but I'd like to know why it's so slow.. Thanks for any help out there on how i can make it faster (it might take up to 5 min to write these 3 export files whith 15 records each!!!) Dan ==================== <style> body, table, tr, td { font-family: 'verdana'; font-size: 12px;
5
3225
by: Lee Redeem | last post by:
Hi there I've created abd uploaded this basic PHP script: <html> <head> <title>PHP Test</title> </head> <body> <H1 align="center">
5
10053
by: christopher vogt | last post by:
Hi, i'm wondering if there is something like $this-> to call a method inside another method of the same class without using the classname in front. I actually use class TEST { function func1()
6
2663
by: Phil Powell | last post by:
Ok guys, here we go again! SELECT s.nnet_produkt_storrelse_navn FROM nnet_produkt_storrelse s, nnet_produkt_varegruppe v, nnet_storrelse_varegruppe_assoc sv, nnet_produkt p WHERE s.nnet_produkt_storrelse.id = sv.nnet_produkt_storrelse_id AND sv.nnet_produkt_varegruppe_id = v.nnet_produkt_varegruppe_id AND sv.nnet_produkt_varegruppe_id IN ( SELECT nnet_produkt_varegruppe_id FROM nnet_produkt_varegruppe
2
1869
by: Frederick Gotham | last post by:
I don't like macros for a few reasons -- here's just a few... Reason 1: namespace ArbitraryNamespace { #define Func(i) ( i + '0' ) }
0
8610
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9170
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8873
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7740
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5862
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4623
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3052
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2339
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2007
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.