A Basic Network Datatype

        By Ben :D
Basic Unit is a “hub”
Hubs contain “Axons”

     Each axon points
     To ONE other Hub




                                  A hub can
                                  Be pointed to
                                  By multiple
                                  Axons
      A hub might                 belonging
      Have no axons, being        To other hubs
      Pointed TO but not
      Pointing to anything else
Pseudocode for a Hub
class Hub
{
       //payload
       string name;
       int age;
       int IQ;

       //chain of axons
       axon* head;
};
Pseudocode for an Axon
class axon
{
        //type of connection
        string relationship;

       //link to next axon in chain of axons
       axon* next;

       //link to another hub
       hub* out;
};
Endless Possibilities!

•   Molecular Modeling
•   Social Networks
•   Criminal Organization
•   Political Research
•   Disease Transmission
•   Business Relationships
•   Computer Networks
•   Optimization Problems
•   Visual Organization
•   Genetic Relationships
•   Combinatorics

A basic network datatype

  • 1.
    A Basic NetworkDatatype By Ben :D
  • 2.
    Basic Unit isa “hub”
  • 3.
    Hubs contain “Axons” Each axon points To ONE other Hub A hub can Be pointed to By multiple Axons A hub might belonging Have no axons, being To other hubs Pointed TO but not Pointing to anything else
  • 4.
    Pseudocode for aHub class Hub { //payload string name; int age; int IQ; //chain of axons axon* head; };
  • 5.
    Pseudocode for anAxon class axon { //type of connection string relationship; //link to next axon in chain of axons axon* next; //link to another hub hub* out; };
  • 6.
    Endless Possibilities! • Molecular Modeling • Social Networks • Criminal Organization • Political Research • Disease Transmission • Business Relationships • Computer Networks • Optimization Problems • Visual Organization • Genetic Relationships • Combinatorics