A range of values is treated as in descending order if the following element is smaller than the preceding element. Examples: 9, 6, 5, 3, 1.
Order does not increase
A range of values is considered as in the order that does not increase if the following element is smaller than or equal to the preceding element. Examples: 9, 6, 5, 5, 1. This type of order appears when in a sequence that contains the same values (in the example is 5).
Order does not decrease
A range of values that are considered as in order does not decrease if the following element is greater than or equal to the preceding element. Examples: 1, 5, 5, 6, 9. This type of order appears when in a sequence containing the same values (in the example is 5).
According to Tutorialspoint
Previous article: Hash Table data structure
Next lesson: Bubble Sort algorithm (Bubble Sort)