Блог пользователя farhan.khwaja

Автор farhan.khwaja, 14 лет назад, По-английски
A small snippet of the code:

#include<stdio.h>
    #define maxx 101
    
    int Q[maxx];
    int first ,last;
    int node, edge;
    
    char linker[maxx][maxx];
    char var[maxx];
    int path[maxx];
    
    void Ini() {
    int i, j;
    for(i = 1; i<= node; i++) {
    for(j = 1; j<= node; j++) {
    linker[i][j] = 0;
    }
    path[i] = i;
    var[i] = 0;
    }
    }
    
    //Inserts element in the Q ie ENQUEUE
    void Insert(int n) {
    Q[last++] = n;
    last %= maxx;
    }


rest in here click:  http://codetolearn.blogspot.com/2010/12/bfs-algorithm-in-c.html
  • Проголосовать: нравится
  • -2
  • Проголосовать: не нравится

14 лет назад, # |
Rev. 2   Проголосовать: нравится +3 Проголосовать: не нравится
1. Use something like pastebin.com to publish your code
3. Use an indentation of your code
4. What is the main purpose of this post?
14 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
Can you show the algorithm by pascal language ??