/Graphs

Implementation of fundamental graph algorithms in C

Primary LanguageC

Graphs Algorithms

Implementation of fundamental graph algorithms in C. Work from CS discipline with this same name.

Developed by

Felipe Renan

Gerson F. Dutra

Instructions

  1. Clone this repository;

Linux

Warning Requirements:

Install gcc (if you don't have it already) - or clang (used by LLVM).

Check for the latest version:

gcc --version

gcc (GCC) 12.1.0

Copyright (C) 2022 Free Software Foundation, Inc.

  1. just run setup.sh;
  2. if you are using gcc press 0, for clang press 1;
  • Everything should works fine from here.

Note

Tip: If you want to debug the project, you can use a tool like gdb, and use it with an IDE like VsCode.

Windows

  1. MingW must works fine, you have to compile and link all files contained in src/ - not sure what command to use for that, so you might want to google it. You probably will want to use an IDE like Code::Blocks, just add the files into your project;
  2. and run src/main.c.