Cihat Salik

Introduction and Big O Notation

What I'm doing here is segmenting the topics from the book Cracking The Coding Interview and cross-referencing them with the corresponding page numbers in the book Data Structures & Algorithms in C++ to determine their relevance.

Cracking The Coding Interview 👉🏻 [2-87]

Data Structures & Algorithms in C++ 👉🏻 [153-192]

Big O Notation

Some Code Snippet Component Testing

1fn main() {
2  println!(Hello, world!);
3}
4
5fn main() {
6  println!(Hello, world!);
7}
8
9trait SomeTrait {
10  fn some_method(&self);
11}
12
some rust codes
1#include <iostream>
2using namespace std;
3
4int main() {
5  cout << "Hello, world!" << endl;
6  return 0;
7}
8
9int main() {
10  cout << "Hello, world!" << endl;
11  return 0;
12}
13
14class SomeClass {
15public:
16void some_method() {
17  cout << "Hello, world!" << endl;
18}
19};
20
some cpp codes