Giter Club home page Giter Club logo

apolu's Introduction

Apolu

Library with more than 21 information structures. This was first created for having an own structure library. More documentation is comming.

Structures:

Package lista:

  • ListaSimple: Linked list that can only be sequentialy browsed in one way, in the order they were added. It's very tiny for the memory.
  • ListaDoble: Linked list that can be sequentialy browsed in two ways. You can access with the node to the left node and to the right node anytime.
  • Conjunto: Linked list that extends the ListaSimple structure. Its main objective is to have just an occurrence per item. It doesn't allow repeated elements.

Package arboles:

  • ArbolBinario: The most primitive tree. Its nodes have two children, the left one and the right one. It's very useful for organized items.
  • ArbolGeneral: An adaptative tree. Its nodes have as many children as the programmer wants. It's very useful for building paths or graphs.
  • ArbolAVL: A balanced tree structure. It finds the way to add nodes mantaining all the nodes easy to find.

Package pilasYColas:

  • Pila: Also known as stack. It's an extension of ListaSimple. It has a LIFO (Last in, first out) main rule. If you want to know more about stacks: http://lmgtfy.com/?q=Stack
  • Cola: Also known as qeue. It implements Qeue interface. It has a FIFO (First in, first out) main rule.

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.