C Board  

Go Back   C Board > Cprogramming.com and AIHorizon.com's Artificial Intelligence Boards > General AI Programming

Reply
 
LinkBack Thread Tools Display Modes
Old 09-09-2005, 05:58 PM   #1
Registered User
 
Join Date: Jul 2003
Posts: 450
Binary Trees MINI MAXING, probability trees

Could anyone explain in english the basic idea behind these topics.
The purpose of this thread is to get local Cprogrammers input and to increase interest in this topic.
curlious is offline   Reply With Quote
Old 09-09-2005, 09:31 PM   #2
Registered User
 
Join Date: Jul 2003
Posts: 450
/Bump the bum.

My take, many years ago I read a book on artificial intelligence and my memory is poor but here goes.

Binary trees are often used because you may quickly search for any given data.
The idea behind probability trees is to find the highest or lowest probability quickly. MINI MAXING means the data on the branches of the tree are weighted based on there distance from the root, and staticaly by the probability based on its distance (and often position depending on your traversal method) from the root. The weighted numbers are essentialy odds, while the position is a guess based on the odds.

I invite any comments because it has been so long that I feel very shaky even replying under my own post.

It is evident that these terms may be looked up via a search engine.
curlious is offline   Reply With Quote
Old 09-18-2005, 12:25 PM   #3
Frequently Quite Prolix
 
dwks's Avatar
 
Join Date: Apr 2005
Location: Canada
Posts: 7,629
Quote:
Binary trees are often used because you may quickly search for any given data.
They are, however, memory inefficient.
__________________
dwk

Seek and ye shall find. quaere et invenies.

"Simplicity does not precede complexity, but follows it." -- Alan Perlis
"Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
"The only real mistake is the one from which we learn nothing." -- John Powell


Other boards: DaniWeb, TPS
Unofficial Wiki FAQ: cpwiki.sf.net

My website: http://dwks.theprogrammingsite.com/
Projects: codeform, xuni, atlantis, etc.

New project: nort
dwks is offline   Reply With Quote
Old 09-30-2005, 10:57 AM   #4
Unregistered User
 
Join Date: Sep 2005
Location: Antarctica
Posts: 341
I had to do a project using the minimax algo for an AI class, I initially designed it using trees but it was ungodly slow, then I just did it as a couple of functions in C, which was a lot faster yet harder to read.
rockytriton is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
A Binary Search Tree of... Binary Search Trees... SlyMaelstrom C++ Programming 5 12-10-2005 02:12 PM
Binary Trees wvu2005 C Programming 7 10-15-2005 04:59 PM
Binary Search Trees Part III Prelude A Brief History of Cprogramming.com 16 10-02-2004 03:00 PM
Tutorial review Prelude A Brief History of Cprogramming.com 11 03-22-2004 09:40 PM
Request for comments Prelude A Brief History of Cprogramming.com 15 01-02-2004 10:33 AM


All times are GMT -6. The time now is 03:32 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0 RC2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22