Design and Analysis of RS Sort
Harsh Ranjan, Sumit Agarwal, Niraj Kumar Singh

TL;DR
This paper presents RS sort, a new comparison-based sorting algorithm that reduces comparisons by leveraging established relationships, and analyzes its performance both theoretically and empirically against quick sort.
Contribution
The paper introduces RS sort, a novel sorting algorithm that minimizes comparisons by building on established element relationships, with theoretical and empirical analysis.
Findings
RS sort reduces the number of comparisons compared to traditional algorithms.
Empirical results show RS sort performs competitively with quick sort.
Theoretical analysis confirms the efficiency of RS sort under certain conditions.
Abstract
This paper introduces a new comparison base stable sorting algorithm, named RS sort. RS Sort involves only the comparison of pair of elements in an array which ultimately sorts the array and does not involve the comparison of each element with every other element. RS sort tries to build upon the relationship established between the elements in each pass. Suppose there is an array containing three elements a1, a2, a3 and if a relationship exist such that a1<a2 and a2<a3 then it can be established that a1<a3 and so there is no need to compare a1 and a3. Sorting is a fundamental operation in computer science. RS sort is analyzed both theoretically and empirically. We have performed its Empirical analysis and compared its performance with the well-known quick sort for various input types.
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsAdvanced Algorithms and Applications
