Hi,
I am working in VC++ to develop a program... The objective of the program is to take a chosen geometry with some properties like area, width, depth (input) and verify if it is okay for use in defined scenario (also input). Now, this part I have got to work.
From here, I want to select geometry from an array of available geometry which best suits the defined scenario (ie, has lowest cost or area). The list of geometry available in the market is quite large and likely to change once in a while. Hence, I want to keep this data in a database/spreadsheet and access it during execution.
1. Which is best suited database for programming with VC++?
2. Which is best suited algorithm for finding geometry with least area which also satisfies certain criteria (found through a function that returns a boolean value).
Thanks in advance
Arun
I am working in VC++ to develop a program... The objective of the program is to take a chosen geometry with some properties like area, width, depth (input) and verify if it is okay for use in defined scenario (also input). Now, this part I have got to work.
From here, I want to select geometry from an array of available geometry which best suits the defined scenario (ie, has lowest cost or area). The list of geometry available in the market is quite large and likely to change once in a while. Hence, I want to keep this data in a database/spreadsheet and access it during execution.
1. Which is best suited database for programming with VC++?
2. Which is best suited algorithm for finding geometry with least area which also satisfies certain criteria (found through a function that returns a boolean value).
Thanks in advance
Arun