[algogeeks] Re: birthday panga

2009-09-04 Thread Daniel Bastidas
LOL Ouch On Sat, Sep 5, 2009 at 10:35 AM, Geoffrey Summerhayes sumr...@gmail.comwrote: On Aug 27, 5:19 am, ankur aggarwal ankur.mast@gmail.com wrote: Implement the birthday diary calendar to keep records of all birthdays of your friends 1) what underlying data structure(s) you

[algogeeks] Re: Ebook needed

2009-07-31 Thread Daniel Bastidas
check these: http://avaxhome.ws/ http://www.esnips.com/ On Sat, Aug 1, 2009 at 5:20 AM, Anshya Aggarwal anshya.aggar...@gmail.comwrote: *Hi, I need an ebook of How to Solve It By Computer* by R. G. Dromey. If anybody have the link or ebook please upload iht -- Anshya Aggarwal Sent from

[algogeeks] hide process in java

2008-09-08 Thread Daniel Bastidas
Hi, I´ll trying to hide a process in windows task manager with java. I'm using the Runtime class to execute the process. Any idea? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to

[algogeeks] Re: arc length

2008-01-06 Thread Daniel Bastidas
. By comparing the thetas(on theta axis of Hough transform) of these two points correspondign to each line, you can find out theta required for calculating the Arc length. Hope this helps. -Durgesh. On Jan 6, 4:44am, Daniel Bastidas [EMAIL PROTECTED] wrote: Hi. No. The radius that I talking

[algogeeks] Re: arc length

2008-01-05 Thread Daniel Bastidas
) Can you write the ratio in a mathematical expression so that I will also understand. But I'm not sure if I can answer that. Thanks and Regards, K.V.Chandra Kumar On 05/01/2008, Daniel Bastidas [EMAIL PROTECTED] wrote: ups.. sorry When I said radio I wanted to said ratio or radius

[algogeeks] Re: arc length

2008-01-05 Thread Daniel Bastidas
, Daniel Bastidas [EMAIL PROTECTED] wrote: Hi. Sorry for my poor english, maybe I don´t explain me well. Ok, if A is the area of the circumference then: *A = PI*r^2* and *r* = radius of the circumference as shown in figure So a mathematic expression for the radius will be: *r = (A/PI)^1/2

[algogeeks] Re: arc length

2008-01-04 Thread Daniel Bastidas
Hi everybody. thanks for reply. Clarification: 1. When I said radio I wanted to said ratio of circumference. (sorry) 2. I am not solve the problem for this specific picture, I try to solve for any picture. Chandra could you explain me why L = k*C? I can see it. thanks again and happy new year

[algogeeks] Re: arc length

2008-01-04 Thread Daniel Bastidas
Hi Chandra, I think that it is necessary find the angle theta, because the arc length depends on that. When I said radio I wanted to said ratio or dadius of circumference. bye. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[algogeeks] Re: arc length

2008-01-04 Thread Daniel Bastidas
ups.. sorry When I said radio I wanted to said ratio or radius of circumference. for clarify. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to

[algogeeks] arc length

2008-01-03 Thread Daniel Bastidas
Hi everybody. How can I find the arc length (L) in the picture attach if the only thing I know is the radio of circumference. I don´t know the coordenates of the intersection between line and circumference neither the theta angle. Any idea, it is possible...?. Thanks

[algogeeks] help with this acm problem

2007-11-29 Thread Daniel Bastidas
Hi, I try to solve this problem: The ICPC world finals will be held in a luxurious hotel with a big ballroom. A buffet meal will be served in this ballroom, and organizers decided to decorate its walls with pictures of past champion teams. In order to avoid criticism about favouring some of

[algogeeks] help with this acm problem

2007-11-27 Thread Daniel Bastidas
Hi, I try to solve this problem: The ICPC world finals will be held in a luxurious hotel with a big ballroom. A buffet meal will be served in this ballroom, and organizers decided to decorate its walls with pictures of past champion teams. In order to avoid criticism about favouring some of

[algogeeks] Re: find articulation point

2007-05-19 Thread Daniel Bastidas
I continue equally. Anyway thanks On 5/19/07, dor [EMAIL PROTECTED] wrote: You can find a cut vertex using DFS (and this is probably the easiest way to do it, and the complexity is optimal). Maybe you are looking for something else? On May 18, 9:07 pm, Daniel Bastidas [EMAIL PROTECTED

[algogeeks] find articulation point

2007-05-18 Thread Daniel Bastidas
Hi. I need the find articulation point algorithm, somebody can help me? yeahh... I already look at internet. thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send

[algogeeks] Re: all simple paths in a graph

2007-04-07 Thread Daniel Bastidas
Hey ipsita check it out this code, is in java, mat is the adjacency matrix, it has -1 for a node that can be connected directly. public void paths(int sou,int dest,int mat[][],Vector stack) { boolean band = true; if(sou == dest) { //path it is inside of stack, and dest }