ソースを参照

README-en.md edited online with Bitbucket

コミット
0ece2115af
共有1 個のファイルを変更した6 個の追加6 個の削除を含む
  1. 6
    6
      README-en.md

+ 6
- 6
README-en.md ファイルの表示

294
 ##Laboratory Session:
294
 ##Laboratory Session:
295
 
295
 
296
 
296
 
297
-### Exercise 0 - Download and Understand the Code
297
+### Exercise 1 - Download and Understand the Code
298
 
298
 
299
 
299
 
300
 ####Instructions
300
 ####Instructions
332
 2. `void drawPoints(GISPOI* gisLocations, unsigned int size);`: Given an array of `GISPOI` objects and their size, displays their locations as points in the map.
332
 2. `void drawPoints(GISPOI* gisLocations, unsigned int size);`: Given an array of `GISPOI` objects and their size, displays their locations as points in the map.
333
 
333
 
334
 
334
 
335
-### Exercise 1 - Read the Georeferenced Points into an Array
335
+### Exercise 2 - Read the Georeferenced Points into an Array
336
 
336
 
337
 
337
 
338
 Remember that you will only be changing code in the `main.cpp` file. Your first task will be to add code to read the entire contents of a file into an array of `GISPOI` objects.
338
 Remember that you will only be changing code in the `main.cpp` file. Your first task will be to add code to read the entire contents of a file into an array of `GISPOI` objects.
374
 
374
 
375
 
375
 
376
 
376
 
377
-### Exercise 2 - Max and Min Functions
377
+### Exercise 3 - Max and Min Functions
378
 
378
 
379
 
379
 
380
 Once you have the information of georeferenced cities in the array of objects, you can start processing them in many interesting ways. We will start with some basic operations.
380
 Once you have the information of georeferenced cities in the array of objects, you can start processing them in many interesting ways. We will start with some basic operations.
396
 
396
 
397
 
397
 
398
 
398
 
399
-### Exercise 3 - Compute the Cycle Distance
399
+### Exercise 4 - Compute the Cycle Distance
400
 
400
 
401
 
401
 
402
 1. Read the documentation and implement the function `double cycleDistance(GISPOI A[], int size, int P[])`. Invoke the function from `main()` as indicated in the comments inside the `main()`   function:
402
 1. Read the documentation and implement the function `double cycleDistance(GISPOI A[], int size, int P[])`. Invoke the function from `main()` as indicated in the comments inside the `main()`   function:
406
 
406
 
407
 
407
 
408
 
408
 
409
-### Exercise 4 - More Fun!
409
+### Exercise 5 - More Fun!
410
 
410
 
411
 
411
 
412
 1. Change your code so that it now opens the `pr.txt` file.  Validate your results and marvel at your great achievement!
412
 1. Change your code so that it now opens the `pr.txt` file.  Validate your results and marvel at your great achievement!
420
 ---
420
 ---
421
 
421
 
422
 
422
 
423
-##Deliverables
423
+## Deliverables
424
 
424
 
425
 
425
 
426
 Use "Deliverable" in Moodle to hand in the `main.cpp` file. Remember to use good programming techniques, include the name of the programmers involved, and document your program.
426
 Use "Deliverable" in Moodle to hand in the `main.cpp` file. Remember to use good programming techniques, include the name of the programmers involved, and document your program.