User contributions
From CMSC 420
- 17:29, 30 September 2013 diff hist +2 Part 2 →Data structures
- 17:29, 30 September 2013 diff hist +4 Part 2 →Data structures
- 17:27, 30 September 2013 diff hist +117 Part 2
- 17:10, 30 September 2013 diff hist +4,703 N ShortestPath Created page with "Prints the shortest path and direction traveled (from the perspective of someone driving down the current road) between the cities named by the '''start''' and '''end''' attri..." current
- 16:56, 30 September 2013 diff hist +1,139 N NearestCityToRoad Created page with "Will return the name and location of the closest city in the spatial map to the specified road in the spatial map. The road is specified by the start and end cities. Since roa..." current
- 16:54, 30 September 2013 diff hist +722 N NearestRoad Created page with "Will output the nearest road to the specified point in the spatial map. Ties will be broken asciibetically by the name of the start then end city. == Parameters (In output or..." current
- 16:28, 30 September 2013 diff hist +1,276 N NearestIsolatedCity Created page with "Will return the name and location of the closest isolated city to the specified point in the spatial map. To do this correctly, you may want to use the PriorityQueue from part..." current
- 16:25, 30 September 2013 diff hist +272 NearestCity current
- 16:22, 30 September 2013 diff hist 0 RangeRoads →Possible current
- 16:22, 30 September 2013 diff hist +1,960 N RangeRoads Created page with "Lists all the roads present in the spatial map that intersect the circle defined by the given radius and point (x, y). Roads which are tangent to the circle are considered in ..."
- 16:16, 30 September 2013 diff hist +7 CreateCity →Example current
- 16:15, 30 September 2013 diff hist +7 ClearAll →Example current
- 16:15, 30 September 2013 diff hist +7 ListCities →Example current
- 16:14, 30 September 2013 diff hist +7 SaveMap →Example current
- 16:13, 30 September 2013 diff hist +7 RangeCities →Example current
- 16:12, 30 September 2013 diff hist +198 SaveMap
- 16:11, 30 September 2013 diff hist +283 N PrintPMQuadtree Created page with "prints the PMQuadtree corresponding to the command parameter pmOrder. Because we have quadrants numbered as: (1) NW, (2) NE, (3) SW, (4) SE, the PM quadtrees are deterministic..."
- 16:10, 30 September 2013 diff hist +307 MapCity current
- 16:07, 30 September 2013 diff hist 0 ClearAll
- 16:06, 30 September 2013 diff hist +458 Part 2 →Commands
- 15:54, 30 September 2013 diff hist +1,990 N MapRoad Created page with "Inserts a road between the two cities (vertices) named by the '''start''' and '''end''' attributes in PM quadtree. The obvious error conditions follow: the '''start''' or '''e..." current
- 13:42, 17 September 2013 diff hist +20 Part 1 →Data structures
- 21:07, 13 September 2013 diff hist -9 Part 1 →Data structures
- 19:56, 12 September 2013 diff hist -1 Part 1 →Output
- 19:53, 12 September 2013 diff hist -1 Part 1 →Output
- 14:10, 12 September 2013 diff hist +29 Part 1 →Testing
- 00:12, 11 September 2013 diff hist +12 SaveMap
- 00:12, 11 September 2013 diff hist +12 PrintPRQuadtree current
- 00:12, 11 September 2013 diff hist +12 UnmapCity current
- 00:11, 11 September 2013 diff hist +12 MapCity
- 00:11, 11 September 2013 diff hist +12 ListCities
- 00:11, 11 September 2013 diff hist +12 ClearAll
- 00:10, 11 September 2013 diff hist +12 DeleteCity current
- 00:10, 11 September 2013 diff hist +12 CreateCity
- 00:08, 11 September 2013 diff hist +1,013 N NearestCity Created page with "Will return the name and location of the closest city to the specified point in space. To do this correctly, you may want to use an algorithm using a PriorityQueue, such as [..."
- 00:02, 11 September 2013 diff hist +2,353 N RangeCities Created page with "Lists all the cities present in the map within a radius of a point x,y in the map. Cities on the boundary of the circle are included, and x,y are integer coordinates. That is,..."
- 23:57, 10 September 2013 diff hist +627 N SaveMap Created page with "Saves the current map to a file. The image file should be saved with the correct name. It should match our image file: same dimensions, same cities, same colors, same partitio..."
- 23:54, 10 September 2013 diff hist +2,671 N PrintPRQuadtree Created page with "Prints the PR quadtree. Since PR quadtrees are deterministic, your XML should match exactly the primary input/output. == Parameters == * (None) == Possible <output> == A <qu..."
- 23:46, 10 September 2013 diff hist +375 N UnmapCity Created page with "Removes the named city from the spatial map. == Parameters == * name == Possible <output> == * (None) == Possible <error> types == * nameNotInDictionary * cityNotMapped ==..."
- 23:46, 10 September 2013 diff hist +395 N MapCity Created page with "Inserts the named city into the spatial map. == Parameters == * name == Possible <output> == * (None) == Possible <error> types == * nameNotInDictionary * cityAlreadyMapped..."
- 23:44, 10 September 2013 diff hist +1,492 N ListCities Created page with "Prints all cities currently present in the dictionary. The order in which the attributes for the <city> tags are listed is unimportant. However, the city tags themselves must ..."
- 23:42, 10 September 2013 diff hist +4 DeleteCity →Possible
- 23:42, 10 September 2013 diff hist +4 CreateCity
- 23:37, 10 September 2013 diff hist +457 N ClearAll Created page with "Resets all of the structures including the PR Quadtree, clearing them. This has the effect of removing every city. This command cannot fail, so it should unilaterally produce ..."
- 23:35, 10 September 2013 diff hist +2 CreateCity →Possible
- 23:33, 10 September 2013 diff hist -41 m CreateCity
- 23:31, 10 September 2013 diff hist +770 N DeleteCity Created page with "Removes a city with the specified name from data dictionary and the adjacency list. The criteria for success here is simply that the city exists. Note that if the city has bee..."
- 23:23, 10 September 2013 diff hist +965 N CreateCity Created page with "Creates a city (a vertex) with the specified name, coordinates, radius, and color (the last two attributes will be used in later project parts). A city can be successfully cre..."
- 23:05, 10 September 2013 diff hist -62 Part 1 →Data structures
- 23:04, 10 September 2013 diff hist -57 Part 1 →Commands