GithubHelp home page GithubHelp logo

practical-data-structure-archive's Introduction

Struktur Data C++

Berikut adalah beberapa source code dari hasil praktek mata kuliah struktur data.

Compile dengan C++

Install terlebih dahulu compiler untuk c++ nya, jika anda menggunakan linux biasanya sudah terinstall. Namun untuk windows anda dapat mengikuti instruksi seperti pada link disini

   //untuk windows
   g++  namafile.cpp -o namafile.exe
   //untuk linux
   g++  namafile.cpp -o namafile

secara default g++ mencompile dengan standar 98 jika anda ingin mengcompile menggunakan standar yang baru anda dapat menambahkan flag -std sebagai berikut :

   g++ -std=c++11 namafile.cpp -o namafile.exe

standar yang tersedia adalah c++11 c++14 c++17 c++0x

adapun untuk mengcompile beberapa file menjadi satu anda dapat melakukan hal berikut :

    g++ file1.cpp file2.cpp fileN.cpp -o output.exe
    //atau
    g++ -std=c++11 file1.cpp file2.cpp fileN.cpp -o output.exe

Sumber Materi

untuk sumber materi berupa slide bisa klik disini

List of Practical Data Strucutre

  • Singgle Linked List
  • Double Linked List
  • Circular Linked List
  • Multi Linked List
  • Stack
    • Stack List Version
    • Stack Array Version
  • Queue
    • List Version
    • Array Version
      • Versi 1
      • Versi 2
      • Versi 3
  • Tree
  • Graph

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

practical-data-structure-archive's People

Contributors

adzkar avatar rakhadzaky avatar

Watchers

 avatar  avatar  avatar

Forkers

rakhadzaky

practical-data-structure-archive's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.