Cihat Salik

CS Basics Series - #1 - Introduction

5 mins | February 10, 2024 (3m ago) | 
Learning
60 views

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]

  • The Interview Process
  • Behind the Scenes
  • Special Situations
  • Before the Interview
  • Behavioral Questions
  • Big O Notation
  • Technical Questions
  • The Offer and Beyond
  • Interview Questions

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

  • Analysis Tools(Chapter 4)
    • 4.1 The Seven Functions Used in This Book

    • 4.2 Analysis of Algorithms

    • 4.3 Simple Justification Techniques

    • 4.4 Exercises

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