This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ListNode(){ // SingleLinkedListNode | |
this.element = ""; | |
this.nextNode = null; | |
} | |
function LinkedList () { | |
var start, end; | |
var n; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
// Einfach verkettete Liste |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<!-- ADT Liste implementiert als ArrayList --> | |
<script src="http://jsbin.com/cuqure.js"></script> | |
<!-- ADT Liste implementiert als LinkedList --> | |
<script src="http://jsbin.com/wowobu.js"></script> | |
<!-- ADT Liste Hilfsfunktionen. Exportiert |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
function listToString(L){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
function ListNode(){ // LinkedListNode var element ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
// Einfach ArrayListe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>DuA ADTs</title> | |
</head> | |
<body> | |
<h1>ADT Implementierungen</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>DuA Stack Implementierung</title> | |
<!-- der Stack wird über die ArrayList implementiert --> | |
<script src="http://jsbin.com/cuqure.js"></script> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>SubList mit ADTs</title> | |
<!-- ADT Liste implementiert als ArrayList --> | |
<script src="http://jsbin.com/cuqure.js"></script> | |
<!-- ADT Liste implementiert als LinkedList --> | |
<script src="http://jsbin.com/wowobu.js"></script> | |
<!-- ADT Liste Hilfsfunktionen. Exportiert |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Rotieren mit ADTs</title> | |
<!-- ADT Liste implementiert als ArrayList --> | |
<script src="http://jsbin.com/cuqure.js"></script> | |
<!-- ADT Liste implementiert als LinkedList --> | |
<script src="http://jsbin.com/wowobu.js"></script> | |
<!-- ADT Liste Hilfsfunktionen. Exportiert |
OlderNewer