Difference between revisions of "Leaf Node"

From Chessprogramming wiki
Jump to: navigation, search
m
 
Line 1: Line 1:
 
'''[[Main Page|Home]] * [[Search]] * [[Node]] * Leaf Node'''
 
'''[[Main Page|Home]] * [[Search]] * [[Node]] * Leaf Node'''
  
[[FILE:EschersDewdrop.jpg|border|right|thumb|249px|link=http://www.mcescher.com/Gallery/back-bmp/LW356.jpg|[[Arts#Escher|M. C. Escher]], Dewdrop, 1948 <ref>[[Arts#Escher|M. C. Escher]], Dewdrop, 1948, [http://www.mcescher.com/Gallery/gallery-back.htm Picture gallery "Back in Holland 1941 - 1954"] from [http://www.mcescher.com/ The Official M.C. Escher Website]</ref> ]]  
+
[[FILE:EschersDewdrop.jpg|border|right|thumb|249px|link=http://www.mcescher.com/Gallery/back-bmp/LW356.jpg|[[:Category:M. C. Escher|M. C. Escher]], Dewdrop, 1948 <ref>[[:Category:M. C. Escher|M. C. Escher]], Dewdrop, 1948, [http://www.mcescher.com/Gallery/gallery-back.htm Picture gallery "Back in Holland 1941 - 1954"] from [http://www.mcescher.com/ The Official M.C. Escher Website]</ref> ]]  
  
 
'''Leaf nodes''' are [[Node|nodes]] with no further successors. They are either [[Terminal Node|terminal nodes]] or nodes where the desired [[Depth|depth]] from the [[Root|root]] is accomplished and which has been assigned a heuristic value as an "educated guess" to an approximate of a terminal value. Each [[Search Tree|search tree]] has at least one leaf node.  
 
'''Leaf nodes''' are [[Node|nodes]] with no further successors. They are either [[Terminal Node|terminal nodes]] or nodes where the desired [[Depth|depth]] from the [[Root|root]] is accomplished and which has been assigned a heuristic value as an "educated guess" to an approximate of a terminal value. Each [[Search Tree|search tree]] has at least one leaf node.  
Line 14: Line 14:
 
=External Links=
 
=External Links=
 
* [https://en.wikipedia.org/wiki/Leaf_node Leaf node from Wikipedia]
 
* [https://en.wikipedia.org/wiki/Leaf_node Leaf node from Wikipedia]
* [[Videos#KlausSchulze|Klaus Schulze]] - The Wisdom of the Leaves, [https://en.wikipedia.org/wiki/Contemporary_Works_II Contemporary Works II] (2002), [https://en.wikipedia.org/wiki/YouTube YouTube] Video
+
* [[:Category:Klaus Schulze|Klaus Schulze]] - The Wisdom of the Leaves, [https://en.wikipedia.org/wiki/Contemporary_Works_II Contemporary Works II] (2002), [https://en.wikipedia.org/wiki/YouTube YouTube] Video
 
: {{#evu:https://www.youtube.com/watch?v=rgWN8OkdjL4|alignment=left|valignment=top}}
 
: {{#evu:https://www.youtube.com/watch?v=rgWN8OkdjL4|alignment=left|valignment=top}}
  
Line 22: Line 22:
 
'''[[Node|Up one Level]]'''
 
'''[[Node|Up one Level]]'''
 
[[Category:M. C. Escher]]
 
[[Category:M. C. Escher]]
 +
[[Category:Klaus Schulze]]

Latest revision as of 16:08, 9 August 2018

Home * Search * Node * Leaf Node

M. C. Escher, Dewdrop, 1948 [1]

Leaf nodes are nodes with no further successors. They are either terminal nodes or nodes where the desired depth from the root is accomplished and which has been assigned a heuristic value as an "educated guess" to an approximate of a terminal value. Each search tree has at least one leaf node.

See also

External Links

References

Up one Level