fruits <- c("banana", "apple", "orange", "mango", "lemon")
numbers <- c(13, 3, 5, 7, 20, 2)
sort(fruits) # 对字符串进行排序
sort(numbers) # 对数字进行排序