[algogeeks] Code Rush - Online Programming Contest

2013-04-06 Thread Praveen Kumar
“Computers can figure out all kinds of problems, except the things in the
world that just don't add up.” - James Magary

Department of Mathematics, IIT Roorkee presents Code Rush, an online
programming contest as part of its technical festival Cognizance 2013.
There will be 4-5 problems with a slight flavor of mathematics which have
to be solved in 2 hours. The event will be hosted on
HackerEarthhttp://www.hackerearth.com
.
The winners will receive cash prizes in addition to pen drives and
HackerEarth t-shirts.
*Eligibility:* Open for All

*Timings:*
Sunday, 07 Apr 2013
 Starts: 09:30 PM - 11:30 PM IST
 Ends: 07 Apr 2013, 11:30 PM IST

Check out the contest timings in your timezone here?
http://www.timeanddate.com/worldclock/fixedtime.html?msg=Code+Rushiso=20130407T2130p1=176ah=2

For more details, visit the contest page
http://www.hackerearth.com/code-rush/

-- 
Cheers

Praveen

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to algogeeks+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[algogeeks] [Off topic] Code Rush - Online Programming Contest

2013-04-06 Thread Praveen Kumar
[Please ignore the previous mail]

“Computers can figure out all kinds of problems, except the things in the
world that just don't add up.” - James Magary

Department of Mathematics, IIT Roorkee presents Code Rush, an online
programming contest as part of its technical festival Cognizance 2013.
There will be 4-5 problems with a slight flavor of mathematics which have
to be solved in 2 hours. The event will be hosted on
HackerEarthhttp://www.hackerearth.com
.
The winners will receive cash prizes in addition to pen drives and
HackerEarth t-shirts.
*Eligibility:* Open for All

*Timings:*
Sunday, 07 Apr 2013
 Starts: 06:30 PM IST
 Duration: 2 Hours

Check out the contest timings in your timezone
herehttp://www.timeanddate.com/worldclock/fixedtime.html?msg=Code+Rushiso=20130407T1830p1=176ah=2
.

For more details, visit the contest page
http://www.hackerearth.com/code-rush/

-- 
Cheers

Praveen

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to algogeeks+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [algogeeks] fastest sequential access

2012-11-22 Thread Praveen Kumar
The answer should be a vector because it uses an array to store the
elements internally and
since an array consists  of contiguous memory locations, sequential access
will be the fastest.
In contrast to SLL or a DLL, the nodes may be at random memory locations
and will not provide
the fastest sequential access.


On Thu, Nov 22, 2012 at 1:12 PM, atul anand atul.87fri...@gmail.com wrote:

 @shady : as subject says fastest sequential access  , then if i am not
 getting it wrong.we only care of sequential access a value not modifying
 the linked list.
 so i guess double linked list would be helpful
 1) bcozz it can move in both the direction , so if linked list is sorted
 then it would be a great help
 2) if you want to insert element at the end of linked list then if will be
 better than vector
 so i guess it required 1-2 more parameter to decide ,which one to use.

 On Wed, Nov 21, 2012 at 8:21 PM, shady sinv...@gmail.com wrote:

 which data structure among the follow has fastest sequential access ?
 i)   vector
 ii)  Singly linked list
 iii) Doubly linked list

 it won't be doubly linked list as it involves more pointer manipulations
 than singly linked list...

 --




  --






-- 
Cheers

Praveen

-- 




Re: [algogeeks] Re: Algorithm page

2012-04-16 Thread Praveen Kumar
Here[0] is one of the post(
http://marathoncode.blogspot.com.br/2012/03/alguns-truques-da-linguagem-c.html)
by Wladimir in english

[0]http://codewar.in/c-tricks-vectors-and-algorithm-in-stl/


-- 
Cheers

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Test Cases

2011-05-10 Thread Praveen Kumar
cases would be:
1. division by 0 raises an appropriate Exception
2. dividing 0 by any number should result in 0
3. dividing any number by 1 should give the same number
4. a = b*q + r i.e a/b should give q

On Tue, May 10, 2011 at 7:52 PM, Carl Barton odysseus.ulys...@gmail.comwrote:

 Don't really get the question


 On 10 May 2011 09:08, Akshata Sharma akshatasharm...@gmail.com wrote:

 write test cases for the division '/' operator..

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Implementing a BTree

2011-04-21 Thread Praveen Kumar
Hi,

I have to implement BTree and B+ Tree as part of a project. But, I am
finding it difficult to do that.
Can anyone share his/her code if one has implemented it or share resources
where I can find
the implementation?

Praveen

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Sources~websites and materials~ for the algorithms.

2011-04-17 Thread Praveen Kumar
www.codechef.com
www.spoj.ol

On Sun, Apr 17, 2011 at 11:00 PM, sravanreddy001
sravanreddy...@gmail.comwrote:

 Hi,

 Can anyone share the places or locations for the algorithmic challenges,
 puzzles etc.
 here are few I know.

 thealgorithmist.com (google it) -- Its not active now... but has previous
 good set of articles..
 topcoder -- really good

 this site.. :P

 please post all relevent sites... :)

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Study in the heart of Europe

2011-04-12 Thread Praveen Kumar
The owner of this group, please grant me the rights to ban such people and
that sexy bitch.

Praveen

On Tue, Apr 12, 2011 at 9:55 PM, Geo News 22au...@gmail.com wrote:

 *Nursing School Abroad
 Island Paradise. New Facilities. Proven School. Quality program.
 http://bit.ly/degreeZ

 Two-year master's degrees
 Study in the heart of Europe MA Int' Economy and Business
 http://bit.ly/degreeZ

 Study in English in China
 UK Accredited Degrees in Shanghai ! Leeds, Sheffield  Manchester Univ
 http://bit.ly/degreeZ

 -
 *

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] SEXY HOT PHOTOS

2011-04-11 Thread Praveen Kumar
Will the group owner or manager or moderator please ban this sexy bitch?


On Mon, Apr 11, 2011 at 3:03 PM, SUNITHA BUSETTY
sunitha.buse...@gmail.comwrote:

   hot lipkiss
 http://hotactressstoyou.blogspot.com/2011/04/lipkiss-2.html
   lipkiss in without dress
 http://hotactressstoyou.blogspot.com/2011/04/lipkiss.html
seepika padukone sexy back look
 http://hotactressstoyou.blogspot.com/2011/04/deepika-padukone.html
   sexy katrina kaif
 http://hotactressstoyou.blogspot.com/2011/04/katrina-kaif.html
beauty keerthi chawla
 http://hotactressstoyou.blogspot.com/2011/04/keerthi-chawla.html
   saloni sexy photos
 http://hotactressstoyou.blogspot.com/2011/04/saloni.html
 deeksha seth in a hot saree
 http://hotactressstoyou.blogspot.com/2011/04/deeksha-seth.html
 asin hot wallpapers
 http://hotactressstoyou.blogspot.com/2011/04/asin.html
ramba in a red dress
 http://hotactressstoyou.blogspot.com/2011/04/ramba.html
  sexy ilieana is in scert
 http://hotactressstoyou.blogspot.com/2011/04/ileana.html


 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Output of the code

2011-03-28 Thread Praveen Kumar
Here is the correct program :

#includeiostream
using namespace std;

int main()
{
   while(true)
   {
 coutIndia will win the World Cup 2010endl;
   }

return 0;

}


On Mon, Mar 28, 2011 at 8:42 PM, Praveen Kumar praveen97...@gmail.comwrote:

 true is a keyword representing 1 and false as 0. The program will print the
 line a single time.

 On Mon, Mar 28, 2011 at 11:13 AM, balaji a peshwa.bal...@gmail.comwrote:

 the code will give error as there is nothing called true defined.

 On Sun, Mar 27, 2011 at 10:38 PM, Umer Farooq the.um...@gmail.comwrote:

 Hi,

 Can anyone tell me the output of the following code?

 #include iostream.h

 int main()
 {
 .. if (true)
 .. cout  Pakistan will win the WorldCup 2011\n;
 return 0;
 }

 --
 Umer

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 A.Balaji


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.