Jump to content
Fórum Script Brasil
  • 0

Problema com estruturas


Diogo Rupolo

Question

Pessoal tenho as seguintes estruturas abaixo:

typedef struct lista
{
  int *list;                                                                                                                                   
  int tamanho;  
} LISTA;

typedef struct elemento
{
  int no;
  int prof;
} ELEMENTO;


typedef struct arvore
{
  ELEMENTO *elemento;  
  int tamanho;
} ARVORE;


typedef struct floresta
{
  ARVORE *arvore;  
} FLORESTA;
Preciso ler os seguintes arquivos e passar para a estrutura lista (no e prof da estrutura ELEMENTO):
no    prof
1    0
4    1
5    2    
11    3
6    2
7    3
16    4
2    0
8    1
10    2
9    2
12    3
3    0
13    1
14    2
15    3
A seguir é uma lista de adjacência de cada nó. Preciso passar para o ponteiro *list da estrutura lista:
1    4    0    0
4    1    5    6
5    4    11    0
11    5    9    0
6    4    7    0
7    6    16    0
16    7    15    0
2    8    0    0
8    2    9    10
10    8    14    0
9    8    12    0
12    9    0    0
3    13    0    0
13    3    14    0
14    10    13    0
15    13    16    0
Ao ler estes dados quero jogar em uma função do tipo:
void operador1(LISTA *lista, int ind_sort, int ind_pop);
E pretendo acessar os elementos da seguinte forma:
p = floresta[ind_sort].arvore[arv_p].elemento[ip].no;  //acessando um elemento nó de um elemento qualquer ip, de uma árvore arv_p de uma floresta ind_sort
E acessar um índice da lista adjacente dessa forma:
a = lista[p].list[iadj];

Como faço isso, consigo ler o arquivo, mas não estou sabendo carregar o arquivo nas estruturas e passar para a função. Se alguém puder ajudar fico muito agradecido.

Att;

Diogo

Edited by Diogo Rupolo
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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...