Skip to content

Commit c31b378

Browse files
author
samir176520
committed
updates on readmefile
1 parent d92699b commit c31b378

File tree

1 file changed

+45
-41
lines changed

1 file changed

+45
-41
lines changed

README.md

Lines changed: 45 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -23,72 +23,76 @@ It serves as a collection of well-documented examples, exercises, and solutions
2323
```
2424
OOP-Sheets
2525
26-
├── sheet1 # struct, Classes, Objects, and Methods
27-
│ ├── homework.cpp
28-
│ ├── problem1.cpp
29-
│ ├── problem2.cpp
30-
│ ├── problem3.cpp
31-
│ └── sheet #1 (oop).pdf
26+
├── sheet1
27+
│ ├── homework.cpp # Review on all lecture contant
28+
│ ├── problem1.cpp # Review in basics of cpp
29+
│ ├── problem2.cpp # Functions
30+
│ ├── problem3.cpp # Functions And arrays
31+
│ └── sheet #1 (oop).pdf
3232
├── sheet2
33-
│ ├── homework1.cpp
34-
│ ├── homework2.cpp
35-
│ ├── problem1.cpp
36-
│ ├── problem2.cpp
37-
│ ├── problem3.cpp
38-
│ ├── problem4.cpp
33+
│ ├── homework1.cpp # Review on every thing related to structure
34+
│ ├── homework2.cpp # Review on every thing related to Class
35+
│ ├── problem1.cpp # Structure, call by reffrence and value
36+
│ ├── problem2.cpp # Structure, functions
37+
│ ├── problem3.cpp # Class , Methods
38+
│ ├── problem4.cpp # integrity between Classes and Structure
3939
│ └── sheet #2.pdf
4040
├── sheet3
41-
│ ├── homework.cpp
42-
│ ├── problem1.cpp
43-
│ ├── problem2.cpp
44-
│ ├── problem3.cpp
41+
│ ├── homework.cpp # Review on all lecture contant
42+
│ ├── problem1.cpp # Class, construcor, static vairables
43+
│ ├── problem2.cpp # Class, construcor, static vairables,recursive, friend functions
44+
│ ├── problem3.cpp # integraty beyween classes, friend functions
4545
│ └── sheet #3.pdf
46-
├── sheet4 # encapsulation and operators
47-
│ ├── homework.cpp
48-
│ ├── problem1.cpp
49-
│ ├── problem2.cpp
46+
├── sheet4
47+
│ ├── homework.cpp # Review on all lecture contant
48+
│ ├── problem1.cpp # operator overloding, friend operator overloading functions
49+
│ ├── problem2.cpp # operator overloding, friend operator overloading functions
5050
│ └── sheet #4.pdf
5151
├── sheet5
52-
│ ├── data.h
53-
│ ├── mark.h
54-
│ ├── problem1.cpp
55-
│ ├── problem2.cpp
52+
│ ├── data.h # Header-file for problem1.cpp
53+
│ ├── mark.h # Header-file for problem2.cpp
54+
│ ├── problem1.cpp # post-fix, pre-fix, more operator overloading{iostream}, handle header files
55+
│ ├── problem2.cpp # post-fix, pre-fix, more operator overloading{iostream}, handle header files
5656
│ └── sheet #5.pdf
57-
├── sheet6 # Inheritance and polymorphism and template
58-
│ ├── problem1.cpp
59-
│ ├── problem2.cpp
60-
│ ├── problem3.cpp
57+
├── sheet6
58+
│ ├── problem1.cpp # Composition (Containership), operator overloading{iostream}, friend funcions
59+
│ ├── problem2.cpp # Single Inheritance, friend functions
60+
│ ├── problem3.cpp # Multiple Inheritance
61+
│ ├── problem3.cpp
6162
│ └── sheet #6.pdf
6263
├── sheet7
63-
│ ├── problem1.cpp
64-
│ ├── problem2.cpp
64+
│ ├── problem1.cpp # Multilevel Inheritance
65+
│ ├── problem2.cpp # Diamond-shaped inheritance (Hybrid Inheritance)1
6566
│ └── Sheet #7.pdf
6667
├── sheet8
67-
│ ├── problem1.cpp
68+
│ ├── problem1.cpp # Single inhertince, polymorphism, virtual functions
6869
│ └── sheet #8.pdf
6970
├── sheet9
70-
│ ├── problem1.cpp
71-
│ ├── problem2.cpp
71+
│ ├── problem1.cpp # polymorphism, inhertince, Virtual functions, abstract class
72+
│ ├── problem2.cpp # templete class
7273
│ └── sheet #9.pdf
7374
74-
└── README.md
75+
└── README.md # Main repository README file
7576
77+
```
7678

77-
├── basics
79+
### Mesure by difficult
80+
```
81+
├── basics # struct, Classes, Objects, and Methods
7882
│ ├── sheet1
7983
│ ├── sheet2
8084
│ └── sheet3
8185
82-
├── midlevel
86+
├── midlevel # encapsulation and operators
8387
│ ├── sheet4
8488
│ ├── sheet5
8589
│ └── sheet6
8690
87-
── advanced
88-
├── sheet7
89-
├── sheet8
90-
└── sheet9
91-
# Main repository README file
91+
── advanced # Inheritance and polymorphism and template
92+
├── sheet7
93+
├── sheet8
94+
└── sheet9
95+
9296
```
9397

9498
---

0 commit comments

Comments
 (0)