dodanie plikow
This commit is contained in:
commit
2455fa869f
|
@ -0,0 +1,22 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="pl">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Sortowanie Sufiksów</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Sortowanie Sufiksów</h1>
|
||||||
|
<input type="text" id="slowo" placeholder="Podaj słowo">
|
||||||
|
<button onclick="sortujSufiksy()">Sortuj Sufiksy</button>
|
||||||
|
<h2>Nieposortowane Sufiksy</h2>
|
||||||
|
<pre id="nieposortowane"></pre>
|
||||||
|
<h2>Posortowane Sufiksy</h2>
|
||||||
|
<pre id="posortowane"></pre>
|
||||||
|
<script src="js.js">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
|
@ -0,0 +1,13 @@
|
||||||
|
function sortujSufiksy() {
|
||||||
|
const slowo = document.getElementById('slowo').value;
|
||||||
|
const sufiksy = [];
|
||||||
|
for (let i = 0; i < slowo.length; i++) {
|
||||||
|
sufiksy.push(slowo.slice(i));
|
||||||
|
}
|
||||||
|
document.getElementById('nieposortowane').textContent = formatSufiksy(sufiksy);
|
||||||
|
sufiksy.sort();
|
||||||
|
document.getElementById('posortowane').textContent = formatSufiksy(sufiksy);
|
||||||
|
}
|
||||||
|
function formatSufiksy(sufiksy) {
|
||||||
|
return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n');
|
||||||
|
}
|
Loading…
Reference in New Issue