ผลต่างระหว่างรุ่นของ "Ske algo lab-61"

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
แถว 8: แถว 8:
 
* Pointers and dynamic memory allocation, arrays
 
* Pointers and dynamic memory allocation, arrays
 
* Objects and classes
 
* Objects and classes
* Linear data structures: lists, stacks, queues
+
* Linear data structures: lists
* Other abstract data types: set and map
 
* Standard data structure library: STL
 
* Greedy algorithms
 
 
* Sorting
 
* Sorting
 
* Binary search trees
 
* Binary search trees
 +
* Stacks, queues
 
* Graphs
 
* Graphs
 
* Graph searching: DFS, BFS
 
* Graph searching: DFS, BFS
 
+
* Other abstract data types: set and map
 +
* Standard data structure library: STL
 +
* Greedy algorithms
 +
* Divide and conquer algorithms
 
== Resources ==
 
== Resources ==
 
* [[C++ compilers|Notes on C++ compilers]]
 
* [[C++ compilers|Notes on C++ compilers]]
 
* C++ Tutorials: [http://www.cplusplus.com/doc/tutorial/ cplusplus.com], [http://www.tutorialspoint.com/cplusplus/ tutorialspoint.com], [http://www.sololearn.com/Course/CPlusPlus/ sololearn.com]
 
* C++ Tutorials: [http://www.cplusplus.com/doc/tutorial/ cplusplus.com], [http://www.tutorialspoint.com/cplusplus/ tutorialspoint.com], [http://www.sololearn.com/Course/CPlusPlus/ sololearn.com]

รุ่นแก้ไขเมื่อ 18:32, 2 สิงหาคม 2561

Announcements

  • Please add yourself to the facebook group.

Core Materials

These are the list of topics we cover. You will write C/C++ programs to solve various programming/algorithmic tasks to learn these concepts.

  • Quick introduction to C/C++ programming
  • Pointers and dynamic memory allocation, arrays
  • Objects and classes
  • Linear data structures: lists
  • Sorting
  • Binary search trees
  • Stacks, queues
  • Graphs
  • Graph searching: DFS, BFS
  • Other abstract data types: set and map
  • Standard data structure library: STL
  • Greedy algorithms
  • Divide and conquer algorithms

Resources