I'm wonder to know how a decision tree is made when we use cross-validation, in tutorial I've read cross-validation try to find best accuracy or lowest error rate, but how a decision tree is made exactly is not clear.
For example in K=10, Is it choose the best tree from 10 other trees?
Or it tries to choose all redundant edge in tree?
I'm mean I don't understand how exactly a final tree is made from 10 other tree.
Regards.