This document presents a new sorting algorithm called Increcomparision Sort (ICS). ICS aims to improve upon other sorting algorithms like selection sort, max-min sort, and double-ended selection sort that have O(n^2) time complexity in their best case by performing unnecessary comparisons and swaps. ICS works by incrementing an index i if adjacent elements are in order, and otherwise swapping elements from the end of the array forward. The document analyzes ICS's time complexity, showing it has O(n) best case complexity and O(n^2) worst case complexity, an improvement over other algorithms it aims to enhance for sorted input. It then compares ICS to other common sorting algorithms.