forked from TheAlgorithms/TheAlgorithms.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-old.html
More file actions
187 lines (165 loc) · 10.2 KB
/
index-old.html
File metadata and controls
187 lines (165 loc) · 10.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/static/css/main.css">
<title><b>Welcome to TheAlgorithms</b></title>
</head>
<body>
<div class="main-content-container">
<div class="title-container bg-info">
<nav class="navbar navbar-expand-lg navbar-light navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#">
<img src="/static/img/logo.png" alt="TheAlgorithms logo" width="30" height="30">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggler"
aria-controls="navbarToggler" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse w-100 order-3 dual-collapse2" id="navbarToggler">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#alg">What is an algorithm?</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#programmingLanguages">Programming Languages</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Contribute">Contribute</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://gitter.im/TheAlgorithms/">Gitter</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#GitHub">GitHub</a>
</li>
</ul>
</div>
</nav>
<div class="vertical-center">
<div class="container text-white text-center">
<h1 class="display-2 righteous center responsive">TheAlgorithms</h1>
<h2 class="py-5">Welcome to GitHub's largest open-source algorithm library</h2>
<div class="py-5">
<a href="#about"><img class="arrow" src="/static/img/arrow.png" alt="" width="60" heigh="60"></a>
</div>
</div>
</div>
</div>
<div id="about" class="bg-light">
<div class="container py-5">
<h1 class="display-5 righteous">About Us</h1>
<hr/>
<h5>
We are a group of programmers helping each other to build new things, whether it be writing
complex encryption programs, or simple ciphers. Our goal is to work together to document and
model beautiful, helpful and interesting algorithms using code. We are an open-source community -
anyone can contribute. We check each other's work, communicate and collaborate to solve
problems. We strive to be welcoming, respectful, yet make sure that our code follows the latest
programming guidelines.
</h5>
</div>
</div>
<div id="alg" class="bg-info">
<div class="container py-5 text-white">
<h1 class="display-5 righteous">What is an algorithm?</h1>
<h5>
An algorithm is a set of rules that takes in one or more inputs, then performs inner calculations
and data manipulations and returns an output or a set of outputs. In short, algorithms make life
easy. From complex data manipulations and hashes, to simple arithmetic, algorithms follow
a set of steps to produce a useful result. One example of an algorithm would be a simple function
that takes two input values, adds them together and returns their sum.
</h5>
</div>
</div>
<div id="programmingLanguages" class="bg-light">
<div class="container py-5">
<h1 class="display-5 righteous">Programming Languages</h1>
<h5>
<b>We support many programming languages. Each language has its own GitHub repository where all the
code for the algorithms is stored. Here is a list of the current programming languages:</b>
</h5>
<h2 class="pt-5">
<div class="grid">
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/C-Plus-Plus"><img src="./images/svg/cpp-lang.svg" height="50px" alt="C-Plus-Plus Logo"/><br><span class="language-name">C++</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/C"><img src="./images/svg/c-lang.svg" height="50px" alt="C Logo"/><br><span class="language-name">C</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/Python"><img src="./images/svg/python.svg" height="50px" alt="Python Logo"/><br><span class="language-name">Python</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/Java"><img src="./images/svg/java.svg" height="50px" alt="Java Logo"/><br><span class="language-name">Java</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/Scala"><img src="./images/svg/scala.svg" height="50px" alt="Scala Logo"/><br><span class="language-name">Scala</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/C-Sharp"><img src="./images/svg/c-sharp-lang.svg" height="50px" alt="C-Sharp Logo"/><br><span class="language-name">C#</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/Rust"><img src="./images/svg/rust.svg" height="50px" alt="Rust Logo"/><br><span class="language-name">Rust</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/Javascript"><img src="./images/svg/javascript.svg" height="50px" alt="JavaScript Logo"/><br><span class="language-name">JavaScript</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/Go"><img src="./images/svg/golang.svg" height="50px" alt="Go Logo"/><br><span class="language-name">Go</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/R"><img src="./images/svg/r-lang.svg" height="50px" alt="R Logo"/><br><span class="language-name">R</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/Ruby"><img src="./images/svg/ruby.svg" height="50px" alt="Ruby Logo"/><br><span class="language-name">Ruby</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/MATLAB-Octave"><img src="./images/svg/matlab.png" height="50px" alt="MATLAB/Octave Logo"/><br><span class="language-name">MATLAB/<br>Octave</span></a></div>
<div class="grid-item"><a target="_blank" href="https://github.com/TheAlgorithms/Dart"><img src="./images/svg/dart.png" height="50px" alt="Dart Logo"/><br><span class="language-name">Dart</span></a></div>
</div>
</h2>
</div>
</div>
<div id="Contribute" class="bg-info">
<div class="container py-5 text-white">
<h1 class="display-5 righteous">Contribute</h1>
<h5>
We encourage you to contribute to these repositories. If you have an algorithm
that you want to add, a change you want to make or a bug you want to fix, please
do so. But before you do, <strong>make sure you have read the contributing
guidelines found in CONTRIBUTING.md in the repository.</strong> Make sure
that you are respectful, helpful and using the latest version of the language.
After reading the contribution guidelines, please fork the repository, work on
your changes and then submit them as a pull request.
</h5>
</div>
</div>
<div id="GitHub" class="bg-light">
<div class="container py-5">
<h1 class="display-5 righteous">GitHub</h1>
<h5><a class="text-dark" href="https://github.com/TheAlgorithms/"><u>TheAlgorithms
organization is found in GitHub.</u></a></h5> Here you can find all the repositories
as well as see organization members and contact info.
</div>
</div>
<div class="footer">
<div class="container py-5 text-center">
<div class="row">
<div class="col-sm">
<h3><a href="#" style="height:30px"><i class="fa fa-arrow-circle-o-up" aria-hidden="true"></i></a></h3>
</div>
<div class="col-sm">
<!--Removed the <style=""> from here and added color using fill in gitter-brands.svg-->
<h3><a href="https://gitter.im/TheAlgorithms"><i aria-hidden="true"><img src="./images/svg/gitter-brands.svg" height="30px"/></i></a></h3>
</div>
<div class="col-sm">
<h3><a href="https://github.com/TheAlgorithms/" style="height:30px"><i class="fa fa-github" aria-hidden="true"></i></a></h3>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous">
</script>
</body>
</html>