Problem with delete operator [] or memory allocation (?)

I’ve been working on a school project, it’s bascially a system simulating a library. My problem is that whenever one of the clients books a book, and then i try to delete him, i get an error A breakpoint instruction (__debugbreak() statement or a similar call) was executed. From what I have read it occurs when i try to read an array out of bounds or to delete something that already doesn’t exists, but even with that knowledge i have no idea how to fix this issue. My code is quite lenghty, so I will include the crucial parts:
my Client class

class Czytelnik {
private:

    class Osoba {
    private:
        friend Czytelnik;
        string imie;
        string nazwisko;
    public:
        Osoba(string x = "imie", string y = "nazwisko") {
            imie = x;
            nazwisko = y;
        }
        ~Osoba() {}
        friend ostream& operator<<(ostream& output, const Osoba& t)
        {
            output << "imie: " << t.imie << " nazwisko: " << t.nazwisko;
            return output;
        }
        friend istream& operator>>(istream& input, Osoba& t)
        {
            cout << "Podaj imie: ";
            input >> t.imie;
            cout << "Podaj nazwisko: ";
            input >> t.nazwisko;
            return input;
        }
        void print() {
            cout << this->imie << endl;
            cout << this->nazwisko << endl;
        }
        string getimie()
        {
            return imie;
        }
        string getnazwisko() {
            return nazwisko;
        }
        
        void setimie(string imie)
        {
            this->imie = imie;
        }
        void setnazwisko(string nazwisko)
        {
            this->nazwisko = nazwisko;
        }

    };
    Osoba osoba;
    float kara;
    Ksiazka** wypozyczona;
    int liczbaKsiazek; //liczba obecnie wypozyczonych ksiazek
public:
    Czytelnik(string a = "imie", string b = "nazwisko", float x = 0)
        : osoba(a, b), kara(x), liczbaKsiazek(0) {
        wypozyczona = new Ksiazka * [1];
    }

    Czytelnik(const Czytelnik& t)
        : osoba(t.osoba), kara(t.kara), liczbaKsiazek(t.liczbaKsiazek) {
        wypozyczona = new Ksiazka * [liczbaKsiazek];
        for (int i = 0; i < liczbaKsiazek; ++i) {
            wypozyczona[i] = new Ksiazka(*t.wypozyczona[i]);
        }
    }
    ~Czytelnik() {
        for (int i = 0; i < liczbaKsiazek; ++i) {
            delete wypozyczona[i];
        }
        delete[] wypozyczona;
    }
    Czytelnik& operator=(const Czytelnik& other) {//niezbedny aby wykonac pelna kopie tablicy z ksiazkami
        if (this != &other) {

            this->osoba = other.osoba;
            this->kara = other.kara;

            if (this->wypozyczona) {
                for (int i = 0; i < liczbaKsiazek; ++i) {
                    delete wypozyczona[i];
                }
                delete[] wypozyczona;
            }

            liczbaKsiazek = other.liczbaKsiazek;
            wypozyczona = new Ksiazka * [liczbaKsiazek];
            for (int i = 0; i < liczbaKsiazek; ++i) {
                wypozyczona[i] = new Ksiazka(*other.wypozyczona[i]);
            }
        }
        return *this;
    }
    Czytelnik(Czytelnik&& other) noexcept
    {
        this->osoba = move(other.osoba);
        this->kara = other.kara;
        this->wypozyczona = other.wypozyczona;
        this->liczbaKsiazek = other.liczbaKsiazek;
        other.wypozyczona = nullptr;
        other.kara = 0.0f;
        other.liczbaKsiazek = 0;
    }
    Ksiazka* operator[](int index) {
        if (index >= 0 && index < liczbaKsiazek) {
            return wypozyczona[index];
        }
        else {
            return nullptr;
        }
    }

    Czytelnik& operator=(Czytelnik&& other) noexcept {
        if (this != &other) {
            this->osoba = move(other.osoba);
            this->kara = other.kara;

            delete[] this->wypozyczona;
            this->wypozyczona = other.wypozyczona;

            other.wypozyczona = nullptr;
            other.kara = 0.0f;
        }
        return *this;
    }
    const Ksiazka* operator[](int index) const {
        if (index >= 0 && index < liczbaKsiazek) {
            return wypozyczona[index];
        }
        else {
            return nullptr;
        }
    }
    friend ostream& operator<<(ostream& output, const Czytelnik& t)
    {
        output << t.osoba << " kara: " << t.kara << " wypozyczone: ";
        bool firstBook = true;

        for (int i = 0; i < t.liczbaKsiazek; ++i)
        {
            if (!t.wypozyczona[i]->gettytul().empty())
            {
                if (!firstBook)
                    output << ", ";
                output << t.wypozyczona[i]->gettytul() << ", " << t.wypozyczona[i]->getautor();
                firstBook = false;
            }
        }
        output << endl;
        return output;
    }
    friend istream& operator>>(istream& input, Czytelnik& t)
    {
        input >> t.osoba;
        return input;
    }
    void setimie(string imie) {
        this->osoba.setimie(imie);
    }
    void setnazwisko(string nazwisko) {
        this->osoba.setnazwisko(nazwisko);
    }
    void setkara(float kara) {
        this->kara = kara;
    }
    void setliczbaKsiazek(int liczba) {
        this->liczbaKsiazek = liczba;
    }
    string getimie() {
        return this->osoba.getimie();
    }
    string getnazwisko() {
        return this->osoba.getnazwisko();
    }
    float getkara() {
        return kara;
    }
    int getliczbaKsiazek() {
        return liczbaKsiazek;
    }
    Ksiazka** getwypozyczona() {
        return wypozyczona;
    }
    void print()
    {
        cout << "imie: " << this->osoba.getimie() << " nazwisko: " << this->osoba.getnazwisko() << " kara: " << this->kara << " wypozyczone: ";
        bool firstBook = true;

        for (int i = 0; i < liczbaKsiazek; ++i)
        {
            if (!this->wypozyczona[i]->gettytul().empty())
            {
                if (!firstBook)
                    cout << ", ";
                cout << this->wypozyczona[i]->gettytul() << ", " << this->wypozyczona[i]->getautor();
                firstBook = false;
            }
        }
        cout << endl;
    }

    void wypozycz(Ksiazka* book) {
        // If wypozyczona array is not initialized, initialize it
        if (!wypozyczona) {
            wypozyczona = new Ksiazka * [1]; // Start with one slot
        }

        // Reallocate memory for wypozyczona array to accommodate the new book
        Ksiazka** temp = new Ksiazka * [liczbaKsiazek + 1];
        for (int i = 0; i < liczbaKsiazek; ++i) {
            temp[i] = wypozyczona[i];
        }
        temp[liczbaKsiazek] = book;

        // Clean up old array and update wypozyczona
        delete[] wypozyczona;
        wypozyczona = temp;
        liczbaKsiazek++;

        cout << "Book '" << book->gettytul() << "' borrowed successfully by " << getimie() << " " << getnazwisko() << "." << endl;
    }

};

initialization:

void zainicjuj(Czytelnik*& czytelnicy, int size)
{
    static random_device seed;
    static default_random_engine dfe(seed());
    uniform_int_distribution<int> distribution(0, 9);
    string_view imiona[10] = { "Zuzia", "Marek", "Tadek", "Oliwia", "Gracjan", "Mateusz", "Ignacy", "Leosia", "Przemek", "Joanna" };
    string_view nazwiska[10] = { "Kulas", "Kaczmarek", "Leja", "Kmiecik", "Marciniak", "Kononowicz", "Koziol", "Olekszyk", "Narkiewicz", "Pietruszka" };
    string imionav[10], nazwiskav[10];
    for (int i = 0; i < 10; i++)
    {
        imionav[i] = imiona[i];
        nazwiskav[i] = nazwiska[i];
    }
    for (int i = 0; i < size; i++)
    {
        int random = distribution(dfe);
        int random2 = distribution(dfe);
        // Create a new Czytelnik object with random name and surname
        czytelnicy[i].setimie(imionav[random]);
        czytelnicy[i].setnazwisko(nazwiskav[random2]);
        czytelnicy[i].setkara(0.0f); // Set initial value for kara
        czytelnicy[i].setliczbaKsiazek(0); // Set initial value for liczbaKsiazek
        czytelnicy[i].getwypozyczona()[0] = new Ksiazka();
    }
}

function for assigning the books:

void wypozycz(Czytelnik*& czytelnicy, int ileCzytelnikow, Ksiazka*& ksiazki, int ileKsiazek) {
    string imie, nazwisko, tytul;
    bool znalezionoCzytelnika = false;
    bool znalezionoKsiazke = false;

    cout << "Podaj imie czytelnika: ";
    cin >> imie;
    cout << "Podaj nazwisko czytelnika: ";
    cin >> nazwisko;
    cout << "Podaj tytul ksiazki: ";
    cin >> tytul;

    for (int i = 0; i < ileCzytelnikow; ++i) {
        if (czytelnicy[i].getimie() == imie && czytelnicy[i].getnazwisko() == nazwisko) {
            znalezionoCzytelnika = true; //znaleziono czytelnika

            for (int j = 0; j < ileKsiazek; ++j) {
                if (ksiazki[j].gettytul() == tytul && ksiazki[j].getdostepna()) {
                    znalezionoKsiazke = true; //znaleziono ksiazke

                    czytelnicy[i].wypozycz(&ksiazki[j]);
                    ksiazki[j].setdostepna(false);
                    // czytelnik nie ma miejsca na wiecej ksiazek
                    cout << "Czytelnikowi brakuje miejsca na wypozyczenie kolejnej ksiazki." << endl;
                    return;
                }
            }
            // ksiazki nie ma / jest juz wypozyczona
            if (!znalezionoKsiazke) {
                cout << "Ksiazka o podanym tytule nie istnieje lub jest juz wypozyczona." << endl;
                return;
            }
        }
    }
    // czytelnika nie ma
    if (!znalezionoCzytelnika) {
        cout << "Nie znaleziono czytelnika o podanym imieniu i nazwisku." << endl;
    }
}

and function for deleting a client:

void zwolnij(Czytelnik*& czytelnicy, int& size) {
    string nazwisko;
    int id = -1;
    cout << "Podaj nazwisko: " << endl;
    cin >> nazwisko;
    for (int i = 0; i < size; i++)
    {
        if (czytelnicy[i].getnazwisko() == nazwisko) {
            id = i;
            break;
        }
    }
    if (id != -1)
    {
        for (int i = 0; i < czytelnicy[id].getliczbaKsiazek(); ++i) {
            delete czytelnicy[id].getwypozyczona()[i];
        }
        // Delete the wypozyczona array
        delete[] czytelnicy[id].getwypozyczona();
        Czytelnik* temp;
        stworz(temp, size - 1);
        int j = 0;
        for (int i = 0; i < size; i++)
        {
            if (i != id) {
                temp[j++] = czytelnicy[i];
            }
        }

        delete[] czytelnicy;
        czytelnicy = temp;
        --size;
        cout << "Usunieto czytelnika o nazwisku: " << nazwisko << endl;

    }
    else {
        cout << "Nie znaleziono osoby o podanym nazwisku" << endl;
    }
}

I know it’s a lot to ask for, especially because the code is in polish (since it is a school project) but I’ve been stuck on this problem for a long time and would really appreciate any help! Also keep in mind that i have to do it all on raw pointers and cannot use vectors.

I’ve tried to debug my code and also tried different approaches (such as working on array of objects instead of array on pointers). Chat GPT also doesn’t seem to know what is up.
Also I forgot to mention, when I try to delete a user without any books, it works just fine.

New contributor

jacofig is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật