Files
SortLab/include/sorters/BubbleSorter.hpp
T
2026-03-03 16:39:41 +03:00

24 lines
500 B
C++

#pragma once
#include "Sorter.hpp"
class BubbleSorter : public Sorter {
public:
BubbleSorter();
void step(Array& array) override;
bool isFinished() const override;
std::string getName() const override;
void reset() override;
std::string getTimeComplexity() const override;
std::string getSpaceComplexity() const override;
private:
enum class Phase { COMPARING, SWAPPING, NEXT };
int i_;
int j_;
int n_;
bool finished_;
Phase phase_;
};