摘要: Write a program that sorts a given sequence of characters in the ascending order. A sequence may include only the following characters: 'a', 'b', 'c', 阅读全文
posted @ 2020-08-15 15:42 longlong6296 阅读(95) 评论(0) 推荐(0)
摘要: Implement a method to sort a given array of ints using counting sort. The method should process numbers from -10 to 20 inclusive. Note: the method mus 阅读全文
posted @ 2020-08-15 14:06 longlong6296 阅读(142) 评论(0) 推荐(0)
摘要: Write a program that counts the number of required shifts to sort the numbers in the descending order using insertion sort. By shift, we mean the case 阅读全文
posted @ 2020-08-15 12:20 longlong6296 阅读(185) 评论(0) 推荐(0)
摘要: Let's say that an array is max-min sorted if the first element of the array is the maximum element, the second is the minimum, the third is the second 阅读全文
posted @ 2020-08-15 08:29 longlong6296 阅读(207) 评论(0) 推荐(0)