1) The 1R algorithm generates a one-level decision tree by considering each attribute individually and creating branches for each attribute value. It assigns the majority class to each branch and chooses the attribute with the minimum error.
2) Naive Bayes classification assumes attributes are independent and calculates the probability of each class using Bayes' theorem. It handles missing and numeric attributes.
3) Decision tree algorithms like ID3 use a divide-and-conquer approach, selecting the attribute that maximizes information gain at each node to create branches. Gain ratio addresses issues with highly branched attributes.