inavoig.17 Posted October 23, 2011 Report Share Posted October 23, 2011 Olá,alguém sabe como eu faço para fazer a ordenação de uma lista encadeada por bubble sort ?// minha listatypedef struct node{ int info; struct node *next;}NODE, *NODEPTR;como ficaria a função bubble sort para odenação dessa lista ?Obrigado abraços Quote Link to comment Share on other sites More sharing options...
Question
inavoig.17
Olá,
alguém sabe como eu faço para fazer a ordenação de uma lista encadeada por bubble sort ?
// minha lista
typedef struct node{
int info;
struct node *next;
}NODE, *NODEPTR;
como ficaria a função bubble sort para odenação dessa lista ?
Obrigado
abraços
Link to comment
Share on other sites
0 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.