Software Design
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreSoftware Design

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old May 12th, 2006, 10:28 PM
rani_techie rani_techie is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2006
Location: San Diego,CA
Posts: 2 rani_techie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 54 m 12 sec
Reputation Power: 0
Question Algorithm to find second largest element in an array

Hello friends,
I need to find second largest number in an array of n elements. I have tried a c code for that...

#include <stdio.h>
int main(void) {
int pri, sec, i, v;
int arr[] = {4,10,3,8,6,7,2,7,9,2,0};
pri = sec = 0;
for (i = 0; arr[i]; ++i) {
v = arr[i];
if (v > pri) sec = pri, pri = v;
if (v > sec && v < pri) sec = v;
}
printf("pri is %d, sec is %d\n", pri, sec);
return 0;
}

but i want to know how to find complexity of the algorithm in worst case. and is there any algorithm whose complexity is 2n-3 which cud do the same task?

thnx,
raniiii

Reply With Quote
  #2  
Old May 13th, 2006, 08:02 PM
Lux Perpetua Lux Perpetua is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Feb 2004
Location: San Francisco Bay
Posts: 1,938 Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level)Lux Perpetua User rank is General 5th Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Month 1 Week 2 h 43 m 16 sec
Reputation Power: 1312
If by "2n-3" you are referring to the number of comparisons, then yes: go through and find the largest element (n-1 comparisons), get it out of the way, and then go through and find the largest remaining element (n-2 comparisons).

As for analyzing worst-case complexity in an algorithm like this: the loop body does 3 comparisons and some number of assignments. In the worst case, you will do 3 assignments on each iteration (if the array is sorted). You do all of that n times, so you do 3n comparisons and 3n assignments in the worst case in the loop part of the code. Add to that the overhead for setting things up, initializing structures, etc.

Reply With Quote
  #3  
Old May 14th, 2006, 04:28 AM
rani_techie rani_techie is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2006
Location: San Diego,CA
Posts: 2 rani_techie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 54 m 12 sec
Reputation Power: 0
thnx

thnx for the reply but in a for loop u consider 0(n) complexity no matter how many comparisons u make rite ?

Reply With Quote
  #4  
Old April 29th, 2009, 09:29 AM
sandeep_patra sandeep_patra is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2009
Posts: 1 sandeep_patra User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 m 53 sec
Reputation Power: 0
Hi rani,
u r correct in a loop what does matters is how many times it runs and not the number of comparisons inside it.

so for your algorithm the complexity is O(n) as the loop is running for n times.

now if u want to have an algorithm giving you O(2n -3). then we could think of bubble short to find the second largest element in the array.

ok the complexity of bubble sort is O(n^2) to short complete array of elements.
as we need the second largest number, so we can run the loop only 2 times.
in the first time loop will run for (n-1) times and second time it will run for (n -2).
So all total we have (n-1) + (n-2) = 2n -3.

bye,
Sandeep Patra

Reply With Quote
  #5  
Old August 29th, 2009, 02:35 PM
sathish_leo sathish_leo is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2009
Posts: 1 sathish_leo User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 m 10 sec
Reputation Power: 0
public void FindSec()
{
int[] arr = { 1,2,0,-1,8,26,1,26};
int high, secHigh, temp, i;

high = secHigh = arr[0];

for (i = 1; i < arr.Length; ++i)
{
temp = arr[i];
if(temp > high)
{
secHigh = high;
high = temp;
}
else if(temp >secHigh && temp != high)
{
secHigh = temp;
}
}

Console.WriteLine(secHigh);
}

Reply With Quote
  #6  
Old September 21st, 2010, 01:21 PM
sssrit sssrit is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2010
Posts: 1 sssrit User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 m 44 sec
Reputation Power: 0
Quote:
Originally Posted by sathish_leo
public void FindSec()
{
int[] arr = { 1,2,0,-1,8,26,1,26};
int high, secHigh, temp, i;

high = secHigh = arr[0];

for (i = 1; i < arr.Length; ++i)
{
temp = arr[i];
if(temp > high)
{
secHigh = high;
high = temp;
}
else if(temp >secHigh && temp != high)
{
secHigh = temp;
}
}

Console.WriteLine(secHigh);
}



I think this code will not work , when 1st element of the array will greatest elemnt .....

Reply With Quote
  #7  
Old October 13th, 2010, 01:37 PM
asadullahrao asadullahrao is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2010
Posts: 1 asadullahrao User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 m 41 sec
Reputation Power: 0
This method is incorrect,it will not run at these type of arrays exp: a={10,3,4}

Error
This method is incorrect,it will not run at these type of arrays exp: a={10,3,4}

Quote:
Originally Posted by sathish_leo
public void FindSec()
{
int[] arr = { 1,2,0,-1,8,26,1,26};
int high, secHigh, temp, i;

high = secHigh = arr[0];

for (i = 1; i < arr.Length; ++i)
{
temp = arr[i];
if(temp > high)
{
secHigh = high;
high = temp;
}
else if(temp >secHigh && temp != high)
{
secHigh = temp;
}
}

Console.WriteLine(secHigh);
}

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreSoftware Design > Algorithm to find second largest element in an array

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap