Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 1.67 KB

TEMPLATE-ONE.md

File metadata and controls

52 lines (42 loc) · 1.67 KB

Introduction

Introduce the data structure here. List the operations that will be considered.

Internals

Small description to explain what this section entails for the data structure in question.

Operations

  1. firstOperation()

    Pseudocode:
    Step 1
    Step 2
    Step 3
    

    Time Complexity : Small description of what is involved

    Sample operation Worst Case for firstOperation()
    Constant Time/O(1) Constant Time/O(1)

    Space Complexity : Small description of what is involved

    Sample operation Worst Case for firstOperation()
    Constant Space/O(1) Constant Space/O(1)
  2. secondOperation()

    Pseudocode:
    Step 1
    Step 2
    Step 3
    

    Time Complexity : Small description of what is involved

    Sample operation Worst Case for secondOperation()
    Constant Time/O(1) Constant Time/O(1)

    Space Complexity : Small description of what is involved

    Sample operation Worst Case for secondOperation()
    Constant Space/O(1) Constant Space/O(1)

Terminologies

  1. Term 1: describe it
  2. Term 2: describe it

References

  1. Reference 1
  2. Reference 2

PS: This template assumes that this data structure has only one implementation