Changes between Initial Version and Version 1 of Ticket #3
- Timestamp:
- 01/22/08 23:12:13 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3 – Description
initial v1 1 Counting the number of edges and nodes is a frequent graph operation. Now, it takes linear time to get these values. Instead we might store these values and update the at every edge/node addition and deletion.1 Counting the number of edges and nodes is a frequent graph operation. Now, it takes linear time to get these values. Instead we might store these values and update them at every edge/node addition and deletion. 2 2 3 3 Of course this change would slow down these operations a bit.