ผลต่างระหว่างรุ่นของ "Adt lab"
ไปยังการนำทาง
ไปยังการค้นหา
Jittat (คุย | มีส่วนร่วม) |
Jittat (คุย | มีส่วนร่วม) |
||
(ไม่แสดง 12 รุ่นระหว่างกลางโดยผู้ใช้คนเดียวกัน) | |||
แถว 1: | แถว 1: | ||
+ | * [http://128.199.148.78/grader/ ADT Lab Grader] | ||
* [[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] | ||
แถว 4: | แถว 5: | ||
== Problem solving tasks == | == Problem solving tasks == | ||
* [[adt lab/Ad hoc problems 1|Ad hoc problems 1]] | * [[adt lab/Ad hoc problems 1|Ad hoc problems 1]] | ||
+ | * [[adt lab/Ad hoc problems 2|Ad hoc problems 2]] | ||
+ | * [[adt lab/Data structure problems 1|Data structure problems 1]] | ||
+ | * [[adt lab/Data structure and sorting problems 2|Data structure and sorting problems 2]] | ||
+ | * [[adt lab/Data structure problems 3|Data structure problems 3]] | ||
+ | * [[adt lab/Graph problems|Graph problems]] | ||
+ | |||
+ | * [[adt lab/grader/hints|Hints to tasks on the grader]] | ||
== Materials == | == Materials == | ||
* [[adt lab/pointers|Pointers and arrays]] | * [[adt lab/pointers|Pointers and arrays]] | ||
+ | * [[adt lab/classes|Classes and simple list ADT]] | ||
+ | * [[adt lab/linked lists|Linked lists]] | ||
+ | * [[adt lab/bst|Binary search trees]] | ||
+ | |||
+ | * [[adt lab/stl examples|Example codes for STL]] | ||
+ | ** [[adt lab/stl sets and maps|More examples of sets and maps]] (examples from last year) | ||
+ | * [[adt lab/adjlist and bfs|Example code for reading graphs & find levels with bfs]] | ||
+ | ** Other example [[Psl/adjlist|Reading graphs into adjacency lists + DFS]] | ||
== Links == | == Links == | ||
* [[Adt lab-58|Course from last year]] | * [[Adt lab-58|Course from last year]] |
รุ่นแก้ไขปัจจุบันเมื่อ 06:54, 1 ธันวาคม 2559
- ADT Lab Grader
- Notes on C++ compilers
- C++ Tutorials: cplusplus.com, tutorialspoint.com, sololearn.com
Problem solving tasks
- Ad hoc problems 1
- Ad hoc problems 2
- Data structure problems 1
- Data structure and sorting problems 2
- Data structure problems 3
- Graph problems
Materials
- Example codes for STL
- More examples of sets and maps (examples from last year)
- Example code for reading graphs & find levels with bfs
- Other example Reading graphs into adjacency lists + DFS