SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 03 Issue: 02 | Feb-2016 www.irjet.net p-ISSN: 2395-0072
© 2016, IRJET | Impact Factor value: 4.45 | ISO 9001:2008 Certified Journal | Page 1336
Empirical Analysis of Radix Sort using Curve Fitting Technique in
Personal Computer
Arijit Chakraborty1, Sanchari Banerjee2, Avik Mitra3, Dipankar Das4
1,3,4Assistant Professor, Department of BCA(H), The Heritage Academy
Chowbaga, Anandapur, East Kolkata Township, Kolkata-700107, India
2Student, Department of Information Technology, Heritage Institute of Technology
Chowbaga, Anandapur, East Kolkata Township, Kolkata-700107, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - The proposed research article aims at analyzing
empirically a non comparative integer sorting algorithmsuch
as radix sort using known curve fitting technique(s) in a
domestic computing machine (laptop)throughvariousknown
curve fitting models using time performance as a metric. We
have used eleven best known models to observethebehavioral
pattern of radix sort on the fly and concluded that power
model is the candidate model for best fit.
Keywords: Curve fitting, Empirical Analysis, Power Model,
Radix Sort, Performance Analysis
1. INTRODUCTION
Sorting is an art of arranging items and almost all computing
machines can sort data items, many areavailablereadilyand
many are yet to be explored, it is a well known fact that no
key comparison based sorting algorithms can sort N no. of
keys lesser than O(NlogN) operations with some require
O(N2) operations in worst case. We did picked radix sort
amongst many due to a beautiful feature being N of keys can
be sorted in O(N) operations. History of Radix sort dates
back as far as 1887 credit goes to the work of Herman
Hollerith [16] in tabulating machines. This paper aims at
finding the most suitable curve that can be fitted on time
generated data in computing machines used in common
households on day to day basis, curve fitting techniquegives
us a platform to analyze and visualize experimental data
which may give further insight on the behavioral pattern of
radix sort. There is and always will be a scope of data
refinement as we have not considered many effects of
hardware architecture that plays a pivotal roleingenerating
such data, we just want it to keep it simple. In this paper we
found that out of many models power model is an ideal
model to fit the time data in personal computer(s).
2. Related Work
Intermediate step of Radix sort [1] uses the valueofa digitat
a given position to determine the position of the number in
intermediate array; this array, in its final iteration, becomes
the sorted array. The scanning of the digits can either start
from left to right or right to left. Left to right scanning during
radix sort is termed as Most Significant Digit (MSD) radix
sort, whereas, right to left scanning during radix sort is
termed as Least Significant Digit (LSD) radix sort. LSD radix
sorts [2] use queue to store the numbers where the position
in the queue is based on the present digit being scanned.
MSD radix sorts uses bins or buckets to store the numbers
where the bucket in which the number is to be stored is
determined by the digit presently being scanned; for
example, 412 and 032 in list should be stored in bucket
numbers 4 and 0 respectively; in the next iteration, sub-
buckets are allocated for each bucket and the allocation of
the number in the sub-bucket is determined by the digit in
the next scanned position; the procedure recursively
continues to get a set of sub-bucketsinordereachcontaining
a number, and hence the numbers gets sorted when
numbers are extracted in order of the sub-buckets if the
buckets. Since the scanning is a sequential process, it slows
down the actual running time, although the run-time order
remains O(kn), where k is the number of digits in a number
and n is the size of data to be sorted. Moreover, the
allocation of sub-buckets in each recursive stages of MSD
radix sorts can result exponential growth of the allocated
space. To reduce the actual running-time in radix sorts in
scanning of digits and allocation of space [3] proposed
parallel radix sort where buckets are allocated at each
processor of a multi-core processing system, the numbers
are then moved between the buckets in subsequent
iterations. Though the parallel version of the radix sort
reduces the run-time, it suffers from time lag in exchange of
the numbers between the buckets. Moreover, if the buckets
contents vary, there will be further waste of CPU cycles to
deal with asymmetric inter-processor transfer of numbers,
called load imbalance. To reduce the load imbalance, load
balanced parallel radix sort [4] proposed to splitthebuckets
into multiple processors so that the count of the numbers in
each processor remains equal to each other thus improving
the run-time significantly. Partitioned parallel radix sort [2]
is proposed where the communication overhead is reduced
by parallelizing the MSD radixsort.Non-recursiveMSDradix
sort [5] reduces the space overhead in radix sort by using
two sets of identical buckets for each digit, and sorting the
numbers in each bucket using Quicksort [6], and then
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 03 Issue: 02 | Feb-2016 www.irjet.net p-ISSN: 2395-0072
© 2016, IRJET | Impact Factor value: 4.45 | ISO 9001:2008 Certified Journal | Page 1337
transferring the contents of each bucket to another in
alternative fashion. Since space overhead is reduced, the
communication overhead in transferring the numbers
between the buckets is also reduced, thus reducing the run-
time. The dependency of run-time of LSD radix sortinvector
multi-processor environment is analyzed in [7] where
empirical formulation results also revealed dependency on
the number of processors actually used in the sorting
process. Quicksort to sort numbers in MSD radixsortineach
buckets is again employed in [8], called Matesort, thus
eliminating the need of allocation of sub-buckets. To reduce
the space overhead in LSD radix sort in GPUs, [9] proposed
to maintain a global count of the numbers for a set of
processors, so that the count can be used to determine to
position of a number in the final sorted array, resulting 20%
speed up of the algorithm.
All discussed implementations has used specialized
computing environment like CRAY [10] to report the run-
time. However, with the growth of computing needs, it is
expected the sorting is not the only computation to be
performed and any application employing sorting has to be
executed with the other algorithms. Therefore, it is intuitive
to use common computation environment like the personal
computing system for analyzing the run-timeof radixsort.In
the next section, we analyze the actual run-time of the radix
sort algorithm in personal computing system.
3. OBJECTIVES OF THE STUDY
To identify the best curve that can be fitted to the
experimental data points (Run time versus Data size)
obtained by running Radix sort in the worst case in personal
computer and to propose a mathematical model of the best
fitted curve.
4. RESEARCH METHODOLOGY
The steps of the research methodology are given below:
Step 1: The Radix sort algorithm is implemented as a C
programme with data size varying from 10000 to 27000
with interval of 500. For each data size, the programme is
run 100 times and their average run-time is taken.
Step 2: We have used curve fitting technique to find the best
curve that can be fitted to the data pointsi.e.Runtimeversus
Data size. In the present study we have opted R square,
Adjusted R square and Root Mean Square Error (RMSE) as
the ‘Goodness of fit’ statistics [11][12][15].Themodel which
has highest R square value, highest Adjusted R square value
and lowest RMSE has been selected as the candidate model
for the best curve for the dataset [11][12][15].
Step 3: The normality tests of the residuals of the candidate
model are carried out in this step. We have considered both
graphical methods (Histogram analysis of the residuals &Q-
Q plot analysis of the residuals) [11][12] and quantitative
method (Shapiro – Wilk test statistics of the residuals)
[13][14] for this purpose. We should observe a symmetric
bell shaped curve around the histogram, a linear pattern of
the points on the Q-Q plot and the significance of Shapiro –
Wilk statistics higher than .05 to meet the assumption of
normality of error distribution.
Software used: We have used GCC compiler of Dev-C++ 4.0
under Windows XP to generate the experimental data SPSS
have been used for data analysis.
Hardware used: Intel Core 2 Duo CPU T6570 with frequency
of 2.1 GHz with 3 GB RAM (having frequency of 1.19 GHz).
5. DATA ANALYSIS & FINDINGS
The Sample dataset is given in the following table:
Table -1: Data Table
Sl No. Data Size Run Time (milliseconds)
1 10000 1292.49
2 10500 1319.71
3 11000 1463.44
4 11500 1654.06
5 12000 1772.01
6 12500 1921.54
7 13000 2103.61
8 13500 2326.9
9 14000 2529.23
10 14500 2691.85
11 15000 2859.07
12 15500 3116.67
13 16000 3339.06
14 16500 3326.1
15 17000 3601.71
16 17500 3805.93
17 18000 4131.39
18 18500 4367.04
19 19000 3846.41
20 19500 3988.74
21 20000 4198.6
22 20500 4581.72
23 21000 4517.81
24 21500 5006.43
25 22000 5272.06
26 22500 5667.37
27 23000 6187.86
28 23500 6220
29 24000 6636.72
30 24500 6721.21
31 25000 6877.31
32 25500 7288.3
33 26000 7447.19
34 26500 7436.41
35 27000 7836.4
Identification of the best curve that can be fitted to the data
points:
The ‘Goodness of fit’ statistics of the Run time versus Data
size is given below:
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 03 Issue: 02 | Feb-2016 www.irjet.net p-ISSN: 2395-0072
© 2016, IRJET | Impact Factor value: 4.45 | ISO 9001:2008 Certified Journal | Page 1338
Table -2: Goodness of Fit Statistics Table
Model Name R Square Adjusted R Square RMSE
Linear .9797 .9791 288.6211
Logarithmic .9412 .9394 491.338
Inverse .8733 .8695 721.1321
Quadratic .9886 .9878 220.0855
Cubic .9886 .9878 220.0855
Compound .9661 .9651 .0999
Power .9897 .9894 .055
S .981 .9804 .0747
Growth .9661 .9651 .0999
Exponential .9661 .9651 .0999
Logistic .8051 .7992 .729
Findings: From the above table we found that out of eleven
(11) tried models, ten (10) models are having very high R
square and very high Adjusted R square. Out of these ten
(10) models, five (5) models are having low RMSE. We
observe that the Power model is having highest R square
value (.9897), highest Adjusted R square value (.9894) and
lowest RMSE value (.055). Therefore, we have selected the
Power model as the candidate model for the best curve for
this dataset.
The eleven (11) tried models are depicted in the following
figure:
Chart -1: Chart of Eleven Models
The normality test of the residuals of the candidate model is
given below:
(a) Histogram of the residuals –
Chart -2: Histogram of the residuals
Observations: From the above figure we have observed a
symmetric bell shaped curve around the histogram which is
approximately evenly distributed around zero.
(b) Q-Q plot of the residuals –
Chart -3: Q-Q plot of the residuals
Observations: From the above figure we have observed that
the points on the Q-Q plot are approximately linear.
(c) Shapiro – Wilk (SW) test statistics of the residuals –
Table -3: SW Test Statistics Table
Model
Shapiro-Wilk
Statistic df Sig.
Power .971 35 .463
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 03 Issue: 02 | Feb-2016 www.irjet.net p-ISSN: 2395-0072
© 2016, IRJET | Impact Factor value: 4.45 | ISO 9001:2008 Certified Journal | Page 1339
Observations: From the above table we have observed that
the significance of SW statistics is .463 (higher than .05).
Findings of the normality test of the residuals of the
candidate model: From the above observations i.e. (a)
Histogram of the residuals, (b) Q-Q plot of the residuals and
(c) Shapiro – Wilk (SW) test statistics of the residuals, we
have found that the residuals are approximately normally
distributed.
The proposed mathematical model is given below:
Y = 7.274680973837771e-005 * X**1.813662220055146
Here,
Y = Run Time
X = Data Size
The plot of the above model is given below:
Chart -4: Final Concluded Model (Power Model)
6. CONCLUSION:
We have analyzed run-time behavior of Radix sort in its
average case. Where we found that power model (~
C*x**1.81) fits the data. Our analysis has considered
everyday computing scenario where executing the sorting
algorithm will not be the only task performed by a
computing device, that is, we have not taken into the factors
of cache misses, OS context switch etc. In future, we would
like to explore the effects of OS context switches on the
performance of Radix sort and shall try to propose an
empirical model that will give account of such events.
REFERENCES
[1] radix sort, National Institute of Standards and
Technology, [online],
https://xlinux.nist.gov/dads//HTML/radixsort.html
[2] S.J. Lee, M. Jeon, D. Kim, “PartitionedParallel RadixSort”,
vol 190, pp 160-171, LNCS High Performance
Computing, April, 2001.
[3] A. Maus, “A Full Parallel Radix Sorting Algorithm for
Multicore Processors”, NIK 2011.
[4] A. Sohn, Y. Kodama, “Load Balanced Parallel RadixSort”,
pp 3015-312, Proceedings of the 12th International
Conference of Supercomputing, 1998.
[5] A.A.Aydin, G. Alaghband, “Sequential and Hybrid
Approach for non-recursive Most SignificantDigitRadix
Sort”, International Conference on Applied Computing
2013.
[6] C.A.R.Hoare, “Quicksort”, vol. 5, issue 1, pp 10-16, The
Computer Journal, 1962.
[7] M. Zagha, G.E. Blelloch, “Radix Sort for Vector
Multiprocessors”, pp 712-721, Proceedings of the
ACM/IEEE conference of Supercomputing, 1991.
[8] N.A.Darwish, “Formulation andAnalysisofin-placeMSD
Radix sort Algorithms”, vol. 31, no. 6, pp 467-481,
December 2005.
[9] L. Ha, J. Kruger, C.T. Silva, “Fast Four-way Parallel Radix
Sorting on GPUs”, vol. 28, no. 8, pp 2368-2378,
December 2009.
[10] CRAY-1, COMPUTER SYSTEM, HARDWARE
REFERENCE MANNUAL, 2240004, [online], http://ed-
thelen.org/comp-hist/CRAY-1-HardRefMan/CRAY-1-
HRM.html
[11] D. Das, A. Chakraborty, A. Mitra, “Sample Based
Curve Fitting Computation on the Performance of
Quicksort in Personal Computer”, vol. 5, issue 2,pp885-
891, February 2014.
[12] A. Chakraborty, A. Mitra, D. Das, “Empirical Analysis
of Merge sort in Personal Computer by Curve Fitting
Technique”, vol IV, issue IV, pp 1-6, April 2015.
[13] D. Das, P. Chakraborti, “Performance Measurement
and Management Model of Data Generation andWriting
Time in Personal Computer”, vol. 5, issue 6, pp 1218-
1226, June 2014.
[14] Testing for Normality using SPSS Statistics, Laerd
statistics, (n.d.). Retrieved May 17, 2014, from
ttps://statistics.laerd.com/spss-tutorials/testing-for-
normality-using-spss-statistics.php
[15] Evaluating Goodness of Fit – MATLAB & Simulink –
MathWorks India, MathWorks, [online],
http://www.mathworks.in/help/curvefit/evaluating-
goodness-of-fit.html
[16] The Art of Computer Programming by D. Knuth

More Related Content

What's hot

A time energy performance analysis of map reduce on heterogeneous systems wit...
A time energy performance analysis of map reduce on heterogeneous systems wit...A time energy performance analysis of map reduce on heterogeneous systems wit...
A time energy performance analysis of map reduce on heterogeneous systems wit...newmooxx
 
Data Streaming in Big Data Analysis
Data Streaming in Big Data AnalysisData Streaming in Big Data Analysis
Data Streaming in Big Data AnalysisVincenzo Gulisano
 
Data clustering using map reduce
Data clustering using map reduceData clustering using map reduce
Data clustering using map reduceVarad Meru
 
Workflow Scheduling Techniques and Algorithms in IaaS Cloud: A Survey
Workflow Scheduling Techniques and Algorithms in IaaS Cloud: A Survey Workflow Scheduling Techniques and Algorithms in IaaS Cloud: A Survey
Workflow Scheduling Techniques and Algorithms in IaaS Cloud: A Survey IJECEIAES
 
Scalable Distributed Real-Time Clustering for Big Data Streams
Scalable Distributed Real-Time Clustering for Big Data StreamsScalable Distributed Real-Time Clustering for Big Data Streams
Scalable Distributed Real-Time Clustering for Big Data StreamsAntonio Severien
 
Scalable and Adaptive Graph Querying with MapReduce
Scalable and Adaptive Graph Querying with MapReduceScalable and Adaptive Graph Querying with MapReduce
Scalable and Adaptive Graph Querying with MapReduceKyong-Ha Lee
 
SASUM: A Sharing-based Approach to Fast Approximate Subgraph Matching for Lar...
SASUM: A Sharing-based Approach to Fast Approximate Subgraph Matching for Lar...SASUM: A Sharing-based Approach to Fast Approximate Subgraph Matching for Lar...
SASUM: A Sharing-based Approach to Fast Approximate Subgraph Matching for Lar...Kyong-Ha Lee
 
Distributed Near Real-Time Processing of Sensor Network Data Flows for Smart ...
Distributed Near Real-Time Processing of Sensor Network Data Flows for Smart ...Distributed Near Real-Time Processing of Sensor Network Data Flows for Smart ...
Distributed Near Real-Time Processing of Sensor Network Data Flows for Smart ...Otávio Carvalho
 
Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...
Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...
Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...AshishDPatel1
 
Dynamic approach to k means clustering algorithm-2
Dynamic approach to k means clustering algorithm-2Dynamic approach to k means clustering algorithm-2
Dynamic approach to k means clustering algorithm-2IAEME Publication
 
IRJET - Evaluating and Comparing the Two Variation with Current Scheduling Al...
IRJET - Evaluating and Comparing the Two Variation with Current Scheduling Al...IRJET - Evaluating and Comparing the Two Variation with Current Scheduling Al...
IRJET - Evaluating and Comparing the Two Variation with Current Scheduling Al...IRJET Journal
 
Enhancing Performance and Fault Tolerance of Hadoop Cluster
Enhancing Performance and Fault Tolerance of Hadoop ClusterEnhancing Performance and Fault Tolerance of Hadoop Cluster
Enhancing Performance and Fault Tolerance of Hadoop ClusterIRJET Journal
 
Implementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big dataImplementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big dataeSAT Publishing House
 
Introduction to Data streaming - 05/12/2014
Introduction to Data streaming - 05/12/2014Introduction to Data streaming - 05/12/2014
Introduction to Data streaming - 05/12/2014Raja Chiky
 
TOWARDS REDUCTION OF DATA FLOW IN A DISTRIBUTED NETWORK USING PRINCIPAL COMPO...
TOWARDS REDUCTION OF DATA FLOW IN A DISTRIBUTED NETWORK USING PRINCIPAL COMPO...TOWARDS REDUCTION OF DATA FLOW IN A DISTRIBUTED NETWORK USING PRINCIPAL COMPO...
TOWARDS REDUCTION OF DATA FLOW IN A DISTRIBUTED NETWORK USING PRINCIPAL COMPO...cscpconf
 
Hot-Spot analysis Using Apache Spark framework
Hot-Spot analysis Using Apache Spark frameworkHot-Spot analysis Using Apache Spark framework
Hot-Spot analysis Using Apache Spark frameworkSupriya .
 

What's hot (20)

Noura2
Noura2Noura2
Noura2
 
A time energy performance analysis of map reduce on heterogeneous systems wit...
A time energy performance analysis of map reduce on heterogeneous systems wit...A time energy performance analysis of map reduce on heterogeneous systems wit...
A time energy performance analysis of map reduce on heterogeneous systems wit...
 
Data Streaming in Big Data Analysis
Data Streaming in Big Data AnalysisData Streaming in Big Data Analysis
Data Streaming in Big Data Analysis
 
Data clustering using map reduce
Data clustering using map reduceData clustering using map reduce
Data clustering using map reduce
 
Workflow Scheduling Techniques and Algorithms in IaaS Cloud: A Survey
Workflow Scheduling Techniques and Algorithms in IaaS Cloud: A Survey Workflow Scheduling Techniques and Algorithms in IaaS Cloud: A Survey
Workflow Scheduling Techniques and Algorithms in IaaS Cloud: A Survey
 
Scalable Distributed Real-Time Clustering for Big Data Streams
Scalable Distributed Real-Time Clustering for Big Data StreamsScalable Distributed Real-Time Clustering for Big Data Streams
Scalable Distributed Real-Time Clustering for Big Data Streams
 
Scalable and Adaptive Graph Querying with MapReduce
Scalable and Adaptive Graph Querying with MapReduceScalable and Adaptive Graph Querying with MapReduce
Scalable and Adaptive Graph Querying with MapReduce
 
SASUM: A Sharing-based Approach to Fast Approximate Subgraph Matching for Lar...
SASUM: A Sharing-based Approach to Fast Approximate Subgraph Matching for Lar...SASUM: A Sharing-based Approach to Fast Approximate Subgraph Matching for Lar...
SASUM: A Sharing-based Approach to Fast Approximate Subgraph Matching for Lar...
 
C0312023
C0312023C0312023
C0312023
 
Distributed Near Real-Time Processing of Sensor Network Data Flows for Smart ...
Distributed Near Real-Time Processing of Sensor Network Data Flows for Smart ...Distributed Near Real-Time Processing of Sensor Network Data Flows for Smart ...
Distributed Near Real-Time Processing of Sensor Network Data Flows for Smart ...
 
Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...
Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...
Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...
 
Dynamic approach to k means clustering algorithm-2
Dynamic approach to k means clustering algorithm-2Dynamic approach to k means clustering algorithm-2
Dynamic approach to k means clustering algorithm-2
 
IRJET - Evaluating and Comparing the Two Variation with Current Scheduling Al...
IRJET - Evaluating and Comparing the Two Variation with Current Scheduling Al...IRJET - Evaluating and Comparing the Two Variation with Current Scheduling Al...
IRJET - Evaluating and Comparing the Two Variation with Current Scheduling Al...
 
Enhancing Performance and Fault Tolerance of Hadoop Cluster
Enhancing Performance and Fault Tolerance of Hadoop ClusterEnhancing Performance and Fault Tolerance of Hadoop Cluster
Enhancing Performance and Fault Tolerance of Hadoop Cluster
 
Implementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big dataImplementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big data
 
IJET-V3I1P27
IJET-V3I1P27IJET-V3I1P27
IJET-V3I1P27
 
Introduction to Data streaming - 05/12/2014
Introduction to Data streaming - 05/12/2014Introduction to Data streaming - 05/12/2014
Introduction to Data streaming - 05/12/2014
 
TOWARDS REDUCTION OF DATA FLOW IN A DISTRIBUTED NETWORK USING PRINCIPAL COMPO...
TOWARDS REDUCTION OF DATA FLOW IN A DISTRIBUTED NETWORK USING PRINCIPAL COMPO...TOWARDS REDUCTION OF DATA FLOW IN A DISTRIBUTED NETWORK USING PRINCIPAL COMPO...
TOWARDS REDUCTION OF DATA FLOW IN A DISTRIBUTED NETWORK USING PRINCIPAL COMPO...
 
Hot-Spot analysis Using Apache Spark framework
Hot-Spot analysis Using Apache Spark frameworkHot-Spot analysis Using Apache Spark framework
Hot-Spot analysis Using Apache Spark framework
 
CMPE275-Project1Report
CMPE275-Project1ReportCMPE275-Project1Report
CMPE275-Project1Report
 

Similar to Empirical Analysis of Radix Sort using Curve Fitting Technique in Personal Computer

IRJET- Implementation of Radix-16 and Binary 64 Division VLSI Realization...
IRJET-  	  Implementation of Radix-16 and Binary 64 Division VLSI Realization...IRJET-  	  Implementation of Radix-16 and Binary 64 Division VLSI Realization...
IRJET- Implementation of Radix-16 and Binary 64 Division VLSI Realization...IRJET Journal
 
Skyline Query Processing using Filtering in Distributed Environment
Skyline Query Processing using Filtering in Distributed EnvironmentSkyline Query Processing using Filtering in Distributed Environment
Skyline Query Processing using Filtering in Distributed EnvironmentIJMER
 
Modified Pure Radix Sort for Large Heterogeneous Data Set
Modified Pure Radix Sort for Large Heterogeneous Data Set Modified Pure Radix Sort for Large Heterogeneous Data Set
Modified Pure Radix Sort for Large Heterogeneous Data Set IOSR Journals
 
Human Activity Recognition Using AccelerometerData
Human Activity Recognition Using AccelerometerDataHuman Activity Recognition Using AccelerometerData
Human Activity Recognition Using AccelerometerDataIRJET Journal
 
Parallel KNN for Big Data using Adaptive Indexing
Parallel KNN for Big Data using Adaptive IndexingParallel KNN for Big Data using Adaptive Indexing
Parallel KNN for Big Data using Adaptive IndexingIRJET Journal
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...ijceronline
 
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...IRJET Journal
 
SVD BASED LATENT SEMANTIC INDEXING WITH USE OF THE GPU COMPUTATIONS
SVD BASED LATENT SEMANTIC INDEXING WITH USE OF THE GPU COMPUTATIONSSVD BASED LATENT SEMANTIC INDEXING WITH USE OF THE GPU COMPUTATIONS
SVD BASED LATENT SEMANTIC INDEXING WITH USE OF THE GPU COMPUTATIONSijscmcj
 
Parallel Processing Technique for Time Efficient Matrix Multiplication
Parallel Processing Technique for Time Efficient Matrix MultiplicationParallel Processing Technique for Time Efficient Matrix Multiplication
Parallel Processing Technique for Time Efficient Matrix MultiplicationIJERA Editor
 
Algorithm selection for sorting in embedded and mobile systems
Algorithm selection for sorting in embedded and mobile systemsAlgorithm selection for sorting in embedded and mobile systems
Algorithm selection for sorting in embedded and mobile systemsJigisha Aryya
 
Association Rule Mining using RHadoop
Association Rule Mining using RHadoopAssociation Rule Mining using RHadoop
Association Rule Mining using RHadoopIRJET Journal
 
Svm Classifier Algorithm for Data Stream Mining Using Hive and R
Svm Classifier Algorithm for Data Stream Mining Using Hive and RSvm Classifier Algorithm for Data Stream Mining Using Hive and R
Svm Classifier Algorithm for Data Stream Mining Using Hive and RIRJET Journal
 
A Review - Synchronization Approaches to Digital systems
A Review - Synchronization Approaches to Digital systemsA Review - Synchronization Approaches to Digital systems
A Review - Synchronization Approaches to Digital systemsIJERA Editor
 
IRJET- Sampling Selection Strategy for Large Scale Deduplication of Synthetic...
IRJET- Sampling Selection Strategy for Large Scale Deduplication of Synthetic...IRJET- Sampling Selection Strategy for Large Scale Deduplication of Synthetic...
IRJET- Sampling Selection Strategy for Large Scale Deduplication of Synthetic...IRJET Journal
 
Review of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering AlgorithmReview of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering AlgorithmIRJET Journal
 
IRJET- Efficient Design of Radix Booth Multiplier
IRJET- Efficient Design of Radix Booth MultiplierIRJET- Efficient Design of Radix Booth Multiplier
IRJET- Efficient Design of Radix Booth MultiplierIRJET Journal
 

Similar to Empirical Analysis of Radix Sort using Curve Fitting Technique in Personal Computer (20)

IRJET- Implementation of Radix-16 and Binary 64 Division VLSI Realization...
IRJET-  	  Implementation of Radix-16 and Binary 64 Division VLSI Realization...IRJET-  	  Implementation of Radix-16 and Binary 64 Division VLSI Realization...
IRJET- Implementation of Radix-16 and Binary 64 Division VLSI Realization...
 
Skyline Query Processing using Filtering in Distributed Environment
Skyline Query Processing using Filtering in Distributed EnvironmentSkyline Query Processing using Filtering in Distributed Environment
Skyline Query Processing using Filtering in Distributed Environment
 
Modified Pure Radix Sort for Large Heterogeneous Data Set
Modified Pure Radix Sort for Large Heterogeneous Data Set Modified Pure Radix Sort for Large Heterogeneous Data Set
Modified Pure Radix Sort for Large Heterogeneous Data Set
 
Human Activity Recognition Using AccelerometerData
Human Activity Recognition Using AccelerometerDataHuman Activity Recognition Using AccelerometerData
Human Activity Recognition Using AccelerometerData
 
Parallel KNN for Big Data using Adaptive Indexing
Parallel KNN for Big Data using Adaptive IndexingParallel KNN for Big Data using Adaptive Indexing
Parallel KNN for Big Data using Adaptive Indexing
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
 
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
 
SVD BASED LATENT SEMANTIC INDEXING WITH USE OF THE GPU COMPUTATIONS
SVD BASED LATENT SEMANTIC INDEXING WITH USE OF THE GPU COMPUTATIONSSVD BASED LATENT SEMANTIC INDEXING WITH USE OF THE GPU COMPUTATIONS
SVD BASED LATENT SEMANTIC INDEXING WITH USE OF THE GPU COMPUTATIONS
 
Parallel Processing Technique for Time Efficient Matrix Multiplication
Parallel Processing Technique for Time Efficient Matrix MultiplicationParallel Processing Technique for Time Efficient Matrix Multiplication
Parallel Processing Technique for Time Efficient Matrix Multiplication
 
Algorithm selection for sorting in embedded and mobile systems
Algorithm selection for sorting in embedded and mobile systemsAlgorithm selection for sorting in embedded and mobile systems
Algorithm selection for sorting in embedded and mobile systems
 
Association Rule Mining using RHadoop
Association Rule Mining using RHadoopAssociation Rule Mining using RHadoop
Association Rule Mining using RHadoop
 
Cr25555560
Cr25555560Cr25555560
Cr25555560
 
E05312426
E05312426E05312426
E05312426
 
Sorting_project_2.pdf
Sorting_project_2.pdfSorting_project_2.pdf
Sorting_project_2.pdf
 
Svm Classifier Algorithm for Data Stream Mining Using Hive and R
Svm Classifier Algorithm for Data Stream Mining Using Hive and RSvm Classifier Algorithm for Data Stream Mining Using Hive and R
Svm Classifier Algorithm for Data Stream Mining Using Hive and R
 
A Review - Synchronization Approaches to Digital systems
A Review - Synchronization Approaches to Digital systemsA Review - Synchronization Approaches to Digital systems
A Review - Synchronization Approaches to Digital systems
 
Generator of pseudorandom sequences
Generator of pseudorandom sequences Generator of pseudorandom sequences
Generator of pseudorandom sequences
 
IRJET- Sampling Selection Strategy for Large Scale Deduplication of Synthetic...
IRJET- Sampling Selection Strategy for Large Scale Deduplication of Synthetic...IRJET- Sampling Selection Strategy for Large Scale Deduplication of Synthetic...
IRJET- Sampling Selection Strategy for Large Scale Deduplication of Synthetic...
 
Review of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering AlgorithmReview of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering Algorithm
 
IRJET- Efficient Design of Radix Booth Multiplier
IRJET- Efficient Design of Radix Booth MultiplierIRJET- Efficient Design of Radix Booth Multiplier
IRJET- Efficient Design of Radix Booth Multiplier
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .Satyam Kumar
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
An introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptxAn introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptxPurva Nikam
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
computer application and construction management
computer application and construction managementcomputer application and construction management
computer application and construction managementMariconPadriquez1
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfROCENODodongVILLACER
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitterShivangiSharma879191
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 

Recently uploaded (20)

Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
An introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptxAn introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
computer application and construction management
computer application and construction managementcomputer application and construction management
computer application and construction management
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdf
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 

Empirical Analysis of Radix Sort using Curve Fitting Technique in Personal Computer

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 03 Issue: 02 | Feb-2016 www.irjet.net p-ISSN: 2395-0072 © 2016, IRJET | Impact Factor value: 4.45 | ISO 9001:2008 Certified Journal | Page 1336 Empirical Analysis of Radix Sort using Curve Fitting Technique in Personal Computer Arijit Chakraborty1, Sanchari Banerjee2, Avik Mitra3, Dipankar Das4 1,3,4Assistant Professor, Department of BCA(H), The Heritage Academy Chowbaga, Anandapur, East Kolkata Township, Kolkata-700107, India 2Student, Department of Information Technology, Heritage Institute of Technology Chowbaga, Anandapur, East Kolkata Township, Kolkata-700107, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - The proposed research article aims at analyzing empirically a non comparative integer sorting algorithmsuch as radix sort using known curve fitting technique(s) in a domestic computing machine (laptop)throughvariousknown curve fitting models using time performance as a metric. We have used eleven best known models to observethebehavioral pattern of radix sort on the fly and concluded that power model is the candidate model for best fit. Keywords: Curve fitting, Empirical Analysis, Power Model, Radix Sort, Performance Analysis 1. INTRODUCTION Sorting is an art of arranging items and almost all computing machines can sort data items, many areavailablereadilyand many are yet to be explored, it is a well known fact that no key comparison based sorting algorithms can sort N no. of keys lesser than O(NlogN) operations with some require O(N2) operations in worst case. We did picked radix sort amongst many due to a beautiful feature being N of keys can be sorted in O(N) operations. History of Radix sort dates back as far as 1887 credit goes to the work of Herman Hollerith [16] in tabulating machines. This paper aims at finding the most suitable curve that can be fitted on time generated data in computing machines used in common households on day to day basis, curve fitting techniquegives us a platform to analyze and visualize experimental data which may give further insight on the behavioral pattern of radix sort. There is and always will be a scope of data refinement as we have not considered many effects of hardware architecture that plays a pivotal roleingenerating such data, we just want it to keep it simple. In this paper we found that out of many models power model is an ideal model to fit the time data in personal computer(s). 2. Related Work Intermediate step of Radix sort [1] uses the valueofa digitat a given position to determine the position of the number in intermediate array; this array, in its final iteration, becomes the sorted array. The scanning of the digits can either start from left to right or right to left. Left to right scanning during radix sort is termed as Most Significant Digit (MSD) radix sort, whereas, right to left scanning during radix sort is termed as Least Significant Digit (LSD) radix sort. LSD radix sorts [2] use queue to store the numbers where the position in the queue is based on the present digit being scanned. MSD radix sorts uses bins or buckets to store the numbers where the bucket in which the number is to be stored is determined by the digit presently being scanned; for example, 412 and 032 in list should be stored in bucket numbers 4 and 0 respectively; in the next iteration, sub- buckets are allocated for each bucket and the allocation of the number in the sub-bucket is determined by the digit in the next scanned position; the procedure recursively continues to get a set of sub-bucketsinordereachcontaining a number, and hence the numbers gets sorted when numbers are extracted in order of the sub-buckets if the buckets. Since the scanning is a sequential process, it slows down the actual running time, although the run-time order remains O(kn), where k is the number of digits in a number and n is the size of data to be sorted. Moreover, the allocation of sub-buckets in each recursive stages of MSD radix sorts can result exponential growth of the allocated space. To reduce the actual running-time in radix sorts in scanning of digits and allocation of space [3] proposed parallel radix sort where buckets are allocated at each processor of a multi-core processing system, the numbers are then moved between the buckets in subsequent iterations. Though the parallel version of the radix sort reduces the run-time, it suffers from time lag in exchange of the numbers between the buckets. Moreover, if the buckets contents vary, there will be further waste of CPU cycles to deal with asymmetric inter-processor transfer of numbers, called load imbalance. To reduce the load imbalance, load balanced parallel radix sort [4] proposed to splitthebuckets into multiple processors so that the count of the numbers in each processor remains equal to each other thus improving the run-time significantly. Partitioned parallel radix sort [2] is proposed where the communication overhead is reduced by parallelizing the MSD radixsort.Non-recursiveMSDradix sort [5] reduces the space overhead in radix sort by using two sets of identical buckets for each digit, and sorting the numbers in each bucket using Quicksort [6], and then
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 03 Issue: 02 | Feb-2016 www.irjet.net p-ISSN: 2395-0072 © 2016, IRJET | Impact Factor value: 4.45 | ISO 9001:2008 Certified Journal | Page 1337 transferring the contents of each bucket to another in alternative fashion. Since space overhead is reduced, the communication overhead in transferring the numbers between the buckets is also reduced, thus reducing the run- time. The dependency of run-time of LSD radix sortinvector multi-processor environment is analyzed in [7] where empirical formulation results also revealed dependency on the number of processors actually used in the sorting process. Quicksort to sort numbers in MSD radixsortineach buckets is again employed in [8], called Matesort, thus eliminating the need of allocation of sub-buckets. To reduce the space overhead in LSD radix sort in GPUs, [9] proposed to maintain a global count of the numbers for a set of processors, so that the count can be used to determine to position of a number in the final sorted array, resulting 20% speed up of the algorithm. All discussed implementations has used specialized computing environment like CRAY [10] to report the run- time. However, with the growth of computing needs, it is expected the sorting is not the only computation to be performed and any application employing sorting has to be executed with the other algorithms. Therefore, it is intuitive to use common computation environment like the personal computing system for analyzing the run-timeof radixsort.In the next section, we analyze the actual run-time of the radix sort algorithm in personal computing system. 3. OBJECTIVES OF THE STUDY To identify the best curve that can be fitted to the experimental data points (Run time versus Data size) obtained by running Radix sort in the worst case in personal computer and to propose a mathematical model of the best fitted curve. 4. RESEARCH METHODOLOGY The steps of the research methodology are given below: Step 1: The Radix sort algorithm is implemented as a C programme with data size varying from 10000 to 27000 with interval of 500. For each data size, the programme is run 100 times and their average run-time is taken. Step 2: We have used curve fitting technique to find the best curve that can be fitted to the data pointsi.e.Runtimeversus Data size. In the present study we have opted R square, Adjusted R square and Root Mean Square Error (RMSE) as the ‘Goodness of fit’ statistics [11][12][15].Themodel which has highest R square value, highest Adjusted R square value and lowest RMSE has been selected as the candidate model for the best curve for the dataset [11][12][15]. Step 3: The normality tests of the residuals of the candidate model are carried out in this step. We have considered both graphical methods (Histogram analysis of the residuals &Q- Q plot analysis of the residuals) [11][12] and quantitative method (Shapiro – Wilk test statistics of the residuals) [13][14] for this purpose. We should observe a symmetric bell shaped curve around the histogram, a linear pattern of the points on the Q-Q plot and the significance of Shapiro – Wilk statistics higher than .05 to meet the assumption of normality of error distribution. Software used: We have used GCC compiler of Dev-C++ 4.0 under Windows XP to generate the experimental data SPSS have been used for data analysis. Hardware used: Intel Core 2 Duo CPU T6570 with frequency of 2.1 GHz with 3 GB RAM (having frequency of 1.19 GHz). 5. DATA ANALYSIS & FINDINGS The Sample dataset is given in the following table: Table -1: Data Table Sl No. Data Size Run Time (milliseconds) 1 10000 1292.49 2 10500 1319.71 3 11000 1463.44 4 11500 1654.06 5 12000 1772.01 6 12500 1921.54 7 13000 2103.61 8 13500 2326.9 9 14000 2529.23 10 14500 2691.85 11 15000 2859.07 12 15500 3116.67 13 16000 3339.06 14 16500 3326.1 15 17000 3601.71 16 17500 3805.93 17 18000 4131.39 18 18500 4367.04 19 19000 3846.41 20 19500 3988.74 21 20000 4198.6 22 20500 4581.72 23 21000 4517.81 24 21500 5006.43 25 22000 5272.06 26 22500 5667.37 27 23000 6187.86 28 23500 6220 29 24000 6636.72 30 24500 6721.21 31 25000 6877.31 32 25500 7288.3 33 26000 7447.19 34 26500 7436.41 35 27000 7836.4 Identification of the best curve that can be fitted to the data points: The ‘Goodness of fit’ statistics of the Run time versus Data size is given below:
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 03 Issue: 02 | Feb-2016 www.irjet.net p-ISSN: 2395-0072 © 2016, IRJET | Impact Factor value: 4.45 | ISO 9001:2008 Certified Journal | Page 1338 Table -2: Goodness of Fit Statistics Table Model Name R Square Adjusted R Square RMSE Linear .9797 .9791 288.6211 Logarithmic .9412 .9394 491.338 Inverse .8733 .8695 721.1321 Quadratic .9886 .9878 220.0855 Cubic .9886 .9878 220.0855 Compound .9661 .9651 .0999 Power .9897 .9894 .055 S .981 .9804 .0747 Growth .9661 .9651 .0999 Exponential .9661 .9651 .0999 Logistic .8051 .7992 .729 Findings: From the above table we found that out of eleven (11) tried models, ten (10) models are having very high R square and very high Adjusted R square. Out of these ten (10) models, five (5) models are having low RMSE. We observe that the Power model is having highest R square value (.9897), highest Adjusted R square value (.9894) and lowest RMSE value (.055). Therefore, we have selected the Power model as the candidate model for the best curve for this dataset. The eleven (11) tried models are depicted in the following figure: Chart -1: Chart of Eleven Models The normality test of the residuals of the candidate model is given below: (a) Histogram of the residuals – Chart -2: Histogram of the residuals Observations: From the above figure we have observed a symmetric bell shaped curve around the histogram which is approximately evenly distributed around zero. (b) Q-Q plot of the residuals – Chart -3: Q-Q plot of the residuals Observations: From the above figure we have observed that the points on the Q-Q plot are approximately linear. (c) Shapiro – Wilk (SW) test statistics of the residuals – Table -3: SW Test Statistics Table Model Shapiro-Wilk Statistic df Sig. Power .971 35 .463
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 03 Issue: 02 | Feb-2016 www.irjet.net p-ISSN: 2395-0072 © 2016, IRJET | Impact Factor value: 4.45 | ISO 9001:2008 Certified Journal | Page 1339 Observations: From the above table we have observed that the significance of SW statistics is .463 (higher than .05). Findings of the normality test of the residuals of the candidate model: From the above observations i.e. (a) Histogram of the residuals, (b) Q-Q plot of the residuals and (c) Shapiro – Wilk (SW) test statistics of the residuals, we have found that the residuals are approximately normally distributed. The proposed mathematical model is given below: Y = 7.274680973837771e-005 * X**1.813662220055146 Here, Y = Run Time X = Data Size The plot of the above model is given below: Chart -4: Final Concluded Model (Power Model) 6. CONCLUSION: We have analyzed run-time behavior of Radix sort in its average case. Where we found that power model (~ C*x**1.81) fits the data. Our analysis has considered everyday computing scenario where executing the sorting algorithm will not be the only task performed by a computing device, that is, we have not taken into the factors of cache misses, OS context switch etc. In future, we would like to explore the effects of OS context switches on the performance of Radix sort and shall try to propose an empirical model that will give account of such events. REFERENCES [1] radix sort, National Institute of Standards and Technology, [online], https://xlinux.nist.gov/dads//HTML/radixsort.html [2] S.J. Lee, M. Jeon, D. Kim, “PartitionedParallel RadixSort”, vol 190, pp 160-171, LNCS High Performance Computing, April, 2001. [3] A. Maus, “A Full Parallel Radix Sorting Algorithm for Multicore Processors”, NIK 2011. [4] A. Sohn, Y. Kodama, “Load Balanced Parallel RadixSort”, pp 3015-312, Proceedings of the 12th International Conference of Supercomputing, 1998. [5] A.A.Aydin, G. Alaghband, “Sequential and Hybrid Approach for non-recursive Most SignificantDigitRadix Sort”, International Conference on Applied Computing 2013. [6] C.A.R.Hoare, “Quicksort”, vol. 5, issue 1, pp 10-16, The Computer Journal, 1962. [7] M. Zagha, G.E. Blelloch, “Radix Sort for Vector Multiprocessors”, pp 712-721, Proceedings of the ACM/IEEE conference of Supercomputing, 1991. [8] N.A.Darwish, “Formulation andAnalysisofin-placeMSD Radix sort Algorithms”, vol. 31, no. 6, pp 467-481, December 2005. [9] L. Ha, J. Kruger, C.T. Silva, “Fast Four-way Parallel Radix Sorting on GPUs”, vol. 28, no. 8, pp 2368-2378, December 2009. [10] CRAY-1, COMPUTER SYSTEM, HARDWARE REFERENCE MANNUAL, 2240004, [online], http://ed- thelen.org/comp-hist/CRAY-1-HardRefMan/CRAY-1- HRM.html [11] D. Das, A. Chakraborty, A. Mitra, “Sample Based Curve Fitting Computation on the Performance of Quicksort in Personal Computer”, vol. 5, issue 2,pp885- 891, February 2014. [12] A. Chakraborty, A. Mitra, D. Das, “Empirical Analysis of Merge sort in Personal Computer by Curve Fitting Technique”, vol IV, issue IV, pp 1-6, April 2015. [13] D. Das, P. Chakraborti, “Performance Measurement and Management Model of Data Generation andWriting Time in Personal Computer”, vol. 5, issue 6, pp 1218- 1226, June 2014. [14] Testing for Normality using SPSS Statistics, Laerd statistics, (n.d.). Retrieved May 17, 2014, from ttps://statistics.laerd.com/spss-tutorials/testing-for- normality-using-spss-statistics.php [15] Evaluating Goodness of Fit – MATLAB & Simulink – MathWorks India, MathWorks, [online], http://www.mathworks.in/help/curvefit/evaluating- goodness-of-fit.html [16] The Art of Computer Programming by D. Knuth