Tim's point leading you to the OSI model was a good start. However, a couple of errata:
- Switches operate at the data link layer. In most networks, this is Ethernet (IEEE 802.3).
- Routers operate at the network layer (Most commonly IP, Internet Protocol)
- The transport layer is concerned with getting data between end users; it is what most developers will interact with when writing their applications. The two most common transport layer protocols are UDP and TCP.
In terms of the functions that each bit of kit you listed provides. (I'll talk in terms of Ethernet and IP, as these are the defacto standards):
Routers: these devices connect different networks. They maintain routing tables which map IP addresses (more correctly, IP prefixes) to an outgoing interface. Note that an interface may contain one or more ports (See below).
Switches: these maintain forwarding tables which map MAC addresses to physical ports. This is not necessarily a one-to-one mapping; many MAC addresses can be bound to the same physical port. This is the case where you have multi-layer switched networks (think a Netgear or Belkin switch plugged into your office or university network), or a hub connected to a switch port.
Hubs: these are essentially multi-port signal repeaters. They can be either unpowered (simply providing a physical connection for the existing signal to propagate along), or powered, where they actually regenerate and/or amplify the signal they receive. The point to note here is that hubs are a single collision domain. A collision domain represents a set of devices all connected to the same physical transmission medium, such that only one of them can transmit at any given time (ignoring multiplexing technologies like wavelength division multiplexing, frequency-division multiplexing, time-division multiplexing, etc etc.).
In practice, hubs are found less and less in today's data networks, as they have poor performance (as only one user can transmit at a time) and poor security (anyone connected to the same hub can hear everything all other users transmit and receive).
Hope that helped.