
Tudja a globális légi forgalom mennyiségét 2017-ben? Tudja, hogy mi volt a légi forgalom növekedése az elmúlt években? Nézzünk néhány statisztikát.

A Nemzetközi Polgári Repülési Szervezet (ICAO) adatai szerint 2017-ben rekord 4,1 milliárd utast szállított a repülési ágazat menetrend szerinti járatokon. 2017-ben pedig globálisan 37 millióra emelkedett a járatok száma.
Ez sok utas és rengeteg járat foglalja el naponta a légteret az egész világon. Mivel több száz és ezer ilyen járat jár a világ minden tájáról, biztosan különböző útvonalak vannak, több megállóval az egyik helyről a másikra.
Minden járatnak megvan a maga forrása és rendeltetési helye, valamint a szokásos gazdaságos ülőhely ára. Hagyjuk ki a divatos üzleti osztályú jegyeket és az extra lábszobát, és mi nem!
Egy ilyen forgatókönyv szerint túl zavaró annak megválasztása, hogy melyik járat lenne a legjobb, ha egyik helyről a másikra akarunk menni.
Lássuk, milyen számban repülnek a StudentUniverse (kedvezményeket biztosít a hallgatóknak?) Los Angelesből Új-Delhibe.

Összesen 119 járatot kínálnak. Aztán megjelenik egy felugró ablak a webhelyen, amely azt mondja, hogy vannak más webhelyek, amelyek hasonló járatokat kínálhatnak még olcsóbb áron. ?
Olyan sok weboldal és megszámlálhatatlan járat egyetlen forrás és cél érdekében.
Fejlesztőként, ha meg akarom oldani ezt a problémát, felépítenék egy rendszert a következő kérdések hatékony kezelésére:
- Az aktuális tartózkodási helyemről elérhető összes célállomás (max. Megállók számával), és sorolja fel ezeket a célokat is.
Meg kell nyitva tartani a lehetőségeiket, ha utazni akarnak.
- Ismert tény (IMO?), Hogy a több megállóval rendelkező útvonal általában olcsóbb alternatívája a közvetlen járatoknak.
Tehát, ha megadjuk a forrást és az úti célt, érdemes lehet legalább 2 vagy 3 megállóval rendelkező útvonalakat találni.
- A legfontosabb: Mi a legolcsóbb út egy adott forrásból egy adott célállomásig?
- És…. A végén erre jövünk?
Mint sejtheti, az első két lekérdezés kimenetévé több ezer járat indulhat. De ezt bizonyosan csökkenthetjük azzal, ha más kritériumokat is előírunk a kimenet méretének csökkentésére. E cikk terjedelmében összpontosítsunk magukra ezekre az eredeti kérdésekre.
A repülési hálózat modellezése grafikonként
A cikk címsorából elég egyértelmű, hogy valahol grafikonok is részt vesznek, nem igaz?
Ennek a problémának a grafikonjárási problémaként történő modellezése nagymértékben leegyszerűsíti és sokkal könnyebben kezelhetővé teszi a problémát. Tehát első lépésként határozzuk meg a grafikonunkat.
A légi forgalmat a következőként modellezzük:
- rendezett
- esetleg ciklikus
- súlyozott
- erdő. G (V, E)
Irányított, mert minden járatnak meg lesz a kijelölt forrása és rendeltetési helye. Ezek sok jelentést hordoznak.
Ciklikus, mert nagyon sok járatot lehet követni egy adott helyről indulva, ugyanazon a helyen visszafelé érve.
Súlyozott, mert minden járathoz tartozik egy költség, amely a cikk turisztikai osztályú repülőjegyét jelentené.
És végül egy erdő, mert több összekapcsolt alkatrészünk lehet. Nem szükséges, hogy a világ összes városának legyen valamiféle repülési hálózata. Tehát a grafikon leválasztható, tehát erdő.
A csúcsok, V , a világ minden táján találhatók, bárhol is működnek repülőterek.
Az E szélek reprezentatívak lennének a légi forgalmat alkotó összes járat esetében. Egy él u -->
; v egyszerűen azt jelenti, hogy irányított járata van a helyszínről / nincs d
e u t
ov.

Most, hogy van egy ötletünk arról, hogyan lehet modellezni a repülési hálózatot grafikonként, lépjünk tovább, és oldjuk meg a felhasználó első közös lekérdezését.
Elérhető úti célok teljes száma
Ki nem szeret utazni?
Mint valaki, aki szeret különböző helyeket felfedezni, szeretné tudni, hogy az összes úti cél elérhető-e a helyi repülőtérről. Itt is további kritériumok lennének a lekérdezés eredményeinek csökkentésére. De hogy a dolgok egyszerűek legyenek, egyszerűen megpróbáljuk megtalálni az összes helyet, amely elérhető a helyi repülőtérről.
Most, hogy jól definiált grafikonunk van, bejárási algoritmusokat alkalmazhatunk a feldolgozásához.
Egy adott ponttól indulva akár a Szélesség első keresése (BFS), akár a Mélység első keresése (DFS) segítségével felfedezhetjük a grafikont vagy a kiindulási helyről elérhető helyeket a maximális megállási számon belül. Mivel ez a cikk a legelső keresési algoritmusról szól, nézzük meg, hogyan használhatjuk a híres BFS-t ennek a feladatnak a végrehajtásához.
Inicializáljuk a BFS várólistát, amelynek kiindulópontja a megadott hely. Ezután elvégezzük a szélességi első bejárást, és addig haladunk, amíg a sor ki nem ürül, vagy amíg a maximális megállók száma ki nem merül.
Megjegyzés: Ha még nem ismeri az első keresést vagy az első mélységbeli keresést, akkor azt javasoljuk, hogy folytassa ezt a cikket a folytatás előtt.
Nézzük meg a kódot a grafikon adatszerkezetének inicializálásához. Meg kell vizsgálnunk azt is, hogy a BFS algoritmus hogyan jutna az összes célhoz, amely elérhető egy adott forrásból.
Most, hogy van egy jó ötletünk a grafikon inicializálásáról, nézzük meg a BFS algoritmus kódját.
Performing bfs
a város Los Angeles adna nekünk a következő célpontok, amelyek elérhetők:
{'Chicago', 'France', 'Ireland', 'Italy', 'Japan', 'New Delhi', 'Norway'}
Ez egyszerű volt, nem igaz?
We will look at how we can limit the BFS to a maximum number of stops later on in the article.
In case we have a humongous flight network, which we would have in a production scenario, then we would not ideally want to explore all the reachable destinations from a given starting point.
This is a use case if the flight network is very small or pertains only to a few regions in the United States.
But, for a large network, a more realistic use case would be to find all the flight routes with multiple stops. Let us look at this problem in some more detail and see how we can solve it.
Routes with multiple stops
It is a well known fact that more often than not, for a given source and destination, a multi stop trip is cheaper than a direct, non-stop flight.
A lot of times we prefer the direct flight to avoid the layovers. Also because the multi-stop flights do tend to take a lot of time — which we don’t have.
However, if you don’t have any deadlines approaching and you want to save some bucks (and are comfortable with the multi-stop route that a lot of airlines suggest), then you might actually benefit a lot from something like this.
Also, you might get to pass through some of the most beautiful locations in the world with some of the most advanced airports which you can enjoy. So, that’s enough motivation as it is.
In terms of the graph model that we have been talking about, given a source and a destination, we need to come up with routes with 2 or more stops for a given source and destination.
As an end user, we might not want to see flights in this order for this query:
[A, C, D, B], 2 stops, $X[A, E, D, C, F, W, G, T, B], 8 stops, $M[A, R, E, G, B], 3 stops, $K[A, Z, X, C, V, B, N, S, D, F, G, H, B, 11 stops, $P
I know. Nobody in their right minds would want to go for a flight route with 11 stops. But the point I’m trying to make is that an end user would want symmetry. Meaning that they would want to see all the flights with 2 stops first, then all the flights with 3 stops and so on till maybe a max of, say, 5 stops.
But, all the flight routes with the same number of stops in between should be displayed together. That is a requirement we need to satisfy.
Let’s look at how we can solve this. So, given the graph of flight networks, a source S
and a destination D
, we have to perform a level order traversal and report flight routes from S -->
; D with at least 2 and at most 5 stops in between. This means we have to do a level order traversal until a depth of 7 from the start nod
e S .
Have a look at the code for solving this problem:
This might not be the best way to go about solving this problem at scale — the largest memory constraint would be due to the nodes currently present in the queue.
Since every node or location can have thousands of flights to other destinations in the world, the queue could be humongous if we store actual flight data like this. This is just to demonstrate one of the use cases of the breadth first search algorithm.
Now, let us just focus on the traversal and look at the way it is done. The traversal algorithm is simple as it is. However, the entire space complexity of the level order traversal comes from the elements in the queue and the size of each element.
There are multiple ways to implement the algorithm. Also, each of them varies in terms of maximum memory consumed at any given time by the elements in the queue.
We want to see the maximum memory consumed by the queue at any point in time during the level order traversal. Before that, let’s construct a random flight network with random prices.
Now let us look at the implementation of level order traversal.
This above is the easiest and most straightforward implementation of the level order traversal algorithm.
With every node we add to the queue, we also store the level information and we push a tuple of (node, level)
into the queue. So every time we pop an element from the queue, we have the level information attached with the node itself.
The level information for our use case would mean the number of stops from the source to this location in the flight route.
It turns out that we can do better as far as memory consumption of the program is concerned. Let us look at a slightly better approach to doing level order traversal.
The idea here is that we don’t store any additional information with the nodes being pushed into the queue. We use a None
object to mark the end of a given level. We don’t know the size of any level before hand except for the first level, which just has our source
node.
So, we start the queue with [source, None]
and we keep popping elements. Every time we encounter a None
element, we know that a level has ended and a new one has started. We push another None
to mark the end of this new level.
Consider a very simple graph here, and then we will dry run this through the graph.

**************************************************** LEVEL 0 beginslevel = 0, queue = [A, None]level = 0, pop, A, push, B, C, queue = [None, B, C]pop None ******************************************* LEVEL 1 beginspush Nonelevel = 1, queue = [B, C, None]level = 1, pop, B, push, C, D, F, queue = [C, None, C, D, F]level = 1, pop, C, push, D, D (lol!), queue = [None, C, D, F, D, D]pop None ******************************************* LEVEL 2 beginspush Nonelevel = 2, queue = [C, D, F, D, D, None] .... and so on
I hope this sums up the algorithm pretty well. This certainly is a neat trick to do level order traversal, keep track of the levels, and not encounter too much of a memory concern. This certainly reduces the memory footprint of the code.
Don’t get complacent now thinking this is a great improvement.
It is, but you should be asking two questions:
- How big of an improvement is this?
- Can we do better?
I will answer both of these questions now starting with the second question. The answer to that is Yes!
We can do one better here and completely do away with the need for the None
in the queue. The motivation for this approach comes from the previous approach itself.
If you look closely at the dry run above, you can see that every time we pop a None
, one level is finished and the other one is ready for processing. The important thing is that an entire next level exists in the queue at the time of popping of a None
. We can make use of this idea of considering the queue size into the traversal logic.
Here is the pseudo code for this improved algorithm:
queue = Queue()queue.push(S)level = 0while queue is not empty { size = queue.size() // size represents the number of elements in the current level for i in 1..size { element = queue.pop() // Process element here // Perform a series of queue.push() operations here
level += 1
And here is the code for the same.
The pseudo code is self explanatory. We essentially do away with the need for an extra None
element per level and instead make use of the queue’s size to change levels. This would also lead to improvement over the last method, but how much?
Have a look at the following Jupyter Notebook to see the memory difference between the three methods.
- We track the maximum size of the queue at any time by considering the sum of sizes of individual queue elements.
- According to Python’s documentation,
sys.getsizeof
returns the object’s pointer or reference’s size in bytes. So, we saved almost 4.4Kb space(20224 — 15800 bytes)
by switching to theNone
method from the original level order traversal method. This is just the memory savings for this random example, and we went only until the 5th level in the traversal. - The final method only gives an improvement of 16 bytes over the
None
method. This is because we got rid of just 4None
objects which were being used to mark the 4 levels (apart from the first one) that we processed. Each pointer’s size (pointer to an object) is 4 bytes in Python on a 32 bit system.
Now that we have all these interesting multi-path routes from our source to our destination and highly efficient level order traversal algorithms to solve it, we can look at a more lucrative problem to solve using our very own BFS.
What’s the cheapest flight route from my source to a given destination? This is something everybody would be instantly interested in. I mean who doesn’t want to save some bucks?
Shortest Path from a given source to destination
There’s not much description to give for the problem statement. We just need to find the shortest path and make the end user happy.
Algorithmically, given a weighted directed graph, we need to find the shortest path from source to destination. Shortest or cheapest would be one and the same thing from the point of the view of the algorithm.
We will not go into describing a possible BFS solution to this problem because such a solution would be intractable. Let us look at the graph below to understand why that is the case.

We say that BFS is the algorithm to use if we want to find the shortest path in an undirected, unweighted graph. The claim for BFS is that the first time a node is discovered during the traversal, that distance from the source would give us the shortest path.
The same cannot be said for a weighted graph. Consider the graph above. If say we were to find the shortest path from the node A
to B
in the undirected version of the graph, then the shortest path would be the direct link between A and B. So, the shortest path would be of length 1
and BFS would correctly find this for us.
However, we are dealing with a weighted graph here. So, the first discovery of a node during traversal does not guarantee the shortest path for that node. For example, in the diagram above, the node B
would be discovered initially because it is the neighbor of A
and the cost associated with this path (an edge in this case) would be 25
. But, this is not the shortest path. The shortest path is A --> M --> E
--> B of
length 10.
Breadth first search has no way of knowing if a particular discovery of a node would give us the shortest path to that node. And so, the only possible way for BFS (or DFS) to find the shortest path in a weighted graph is to search the entire graph and keep recording the minimum distance from source to the destination vertex.
This solution is not feasible for a huge network like our flight network that would have potentially thousands of nodes.
We won’t go into the details of how we can solve this. That is out of scope for this article.
What if I told you that BFS is just the right algorithm to find the shortest path in a weighted graph with a slight constraint ?
Constrained Shortest Paths
Since the graph we would have for the flight network is humongous, we know that exploring it completely is not really a possibility.
Consider the problem of shortest paths from the customer’s perspective. When you want to book a flight, these are the following options you ideally consider:
- It shouldn’t be too long a flight.
- It should be under your budget (Very Important).
- It may have multiple stops but not more than
K
whereK
can vary from person to person. - Finally we have personal preferences which involve things like lounge access, food quality, layover locations, and average leg room.
The important point to consider here is the third one above: it may have multiple stops, but not more than K
where K
can vary from person to person.
A customer wants the cheapest flight route, but they also don’t want say 20 stops in between their source and destination. A customer might be okay with a maximum of 3 stops, or in extreme cases maybe even 4 — but not more than that.
We would want an application that would find out the cheapest flight route with at most K stops for a given source and destination.

This question from LeetCode has been the primary motivation for me to write this article. I strongly recommend going through the question once and not only relying on the snapshot above.
“Why would BFS work here?” one might ask. “This is also a weighted graph and the same reason for the failure of BFS that we discussed in the previous section should apply here.” NO!
The number of levels that the search would go to is limited by the value K
in the question or in the description provided at the start of section. So, essentially, we would be trying to find the shortest path, but we won’t have to explore the entire graph as such. We will just go up to the level K
.
From a real life scenario, the value of K
would be under 5 for any sane traveler ?.
Let us look at the pseudo-code for the algorithm:
def bfs(source, destination, K): min_cost = dictionary representing min cost under K stops for each node reachable from source.
set min_cost of source to be 0
Q = queue() Q.push(source) stops = 0 while Q is not empty {
size = Q.size for i in range 1..size { element = Q.pop()
if element == destination then continue
for neighbor in adjacency list of element { if stops == K and neighbor != destination then continue
if min_cost of neighbor improves, update and add back to the queue. } } stops ++ }
This again is level order traversal and the approach being used here is the one that makes use of the queue’s size at every level. Let us look at a commented version of the code to solve this problem.
Essentially, we keep track of the minimum distance of every node from the given source. The minimum distance for the source would be 0 and +inf for all others initially.
Whenever we encounter a node, we check if the current minimum path length can be improved or not. If it can be improved, that means that we have found an alternate path from source to this vertex with cheaper cost — a cheaper flight route until this vertex. We queue this vertex again so that locations and nodes reachable from this vertex on are updated (may or may not be) as well.
The key thing is this:
# No need to update the minimum cost if we have already exhausted our K stops. if stops == K and neighbor != dst: continue
So we just popped the a node represented by element
in the code and neighbor
can either be a destination or a random other node. If we have already exhausted our K
stops with the element
being the Kth
stop, then we shouldn’t process and update (possibly) the minimum distance for neighbor
. This would violate our maximum K
stops condition in that case.
As it turns out, I solved this problem originally using Dynamic Programming and it took around 165ms to run on the LeetCode platform. I ran using BFS and it was blazing fast with just 45ms to execute. Motivation enough to write this article for you guys.
I hope you were able to derive some benefit from this article on Breadth First Search and some of its applications. The major focus was to showcase its application to shortest paths in a weighted graph under some constraints ?.