I'm looking for opinions on using Linked Lists vs Arrays in PHP.

As a little background:

I'm developing a calendar that works with LDAP.

I've got the following classes defined.
Event and Calendar

Calendar has methods
displayMonthView($timestamp)
displayWeekView($timestamp)
displayDayView($timestamp)
among others...

and I'm trying to decide if my Calendar class should have a LinkedList or an
Array of Events?

Within displayDayView(), I'd like to display all events for that day from
the collection of events.

Thanks In Advanced.

Johnny


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to