Jump to content
Fórum Script Brasil
  • 0

Problema com lista


muttleydm

Question

Oi pessoal, estou fazendo um trabalho pra facul onde devo armazenar 4 dados de uma consulta médica. Fiz os métodos para incluir na lista e verificar a lista, mas está dando Exception: STATUS_ACCESS_VIOLATION .

Não sei onde pode ser o erro.

Alguém poderia me dar uma ajuda?!

Segue o código:

#ifndef AGENDARCONSULTA_H
#define    AGENDARCONSULTA_H
#include <stdio.h>
#include <iostream>
#include <string>
using namespace std;

struct agenda {
    string horaInicio;
    string horaFim;
    string dataInicio;
    string dataFim;
    struct agenda *prox;
};

typedef struct agenda horaMarcada;

//cabecalho da lista
horaMarcada *primeiro;

class AgendarConsulta {
    horaMarcada c; //celula da lista
    
public:
    AgendarConsulta(){primeiro->prox = NULL;}
    AgendarConsulta(string hrIn, string hrFim, string dtIn, string dtFim) {
        primeiro->prox = NULL;
        c.horaInicio = hrIn;
        c.horaFim = hrFim;
        c.dataInicio = dtIn;
        c.dataFim = dtFim;
    }
    bool insereConsulta(string hrIn, string hrFim, string dtIn, string dtFim) {

        agenda* proximo = NULL;
        agenda* aux = NULL;

        //insere no primeiro da lista
        if (primeiro->prox == NULL) {
            *primeiro->prox = c;
            c.horaInicio = hrIn;
            c.horaFim = hrFim;
            c.dataInicio = dtIn;
            c.dataFim = dtFim;
            return true;
        } else {
            proximo = primeiro->prox;

            //procura na lista data para insercao
            //se chegar a nulo, fim da lista
            while (proximo->dataInicio < dtIn && proximo->prox != NULL)
                proximo = proximo->prox;

            //insere no ultimo elemento da lista
            if (proximo->prox == NULL) {
                *proximo->prox = c;
                c.horaInicio = hrIn;
                c.horaFim = hrFim;
                c.dataInicio = dtIn;
                c.dataFim = dtFim;
                return true;
            } else{
                //insere no meio da lista
                aux->prox = proximo->prox;
                *proximo->prox = c;
                c.prox = aux->prox;
                return true;
            }
        }
        return false;
    }
    
     bool verificaConsulta(string hrIn, string hrFim, string dtIn, string dtFim){
         agenda* proximo = NULL;
         
         while(proximo->prox != NULL){
             if(c.dataInicio == dtIn && c.dataFim == dtFim 
                     && c.horaInicio == hrIn && c.horaFim == hrFim){
                 return true;               
             }
             return false;
         }
     }
     
};
#endif    /* AGENDARCONSULTA_H */

Edited by muttleydm
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...