sll-library
v1.0.2
Published
Easy to import Linked list
Downloads
3
Maintainers
Readme
SLL Library
This is a single-linked list library that provides various operations on single-linked lists.brary to visA liualize and interact with a singly linked list using animations.
Installation 1
You can install this library via npm:
npm install sll-library
A library to visualize and interact with a singly linked list using animations.
Installation 2
You can use this library by including the following resources in your HTML file. No need to download any files, just link directly to the hosted files.
Usage
Method1: Add to HTML Structure Include the following HTML structure to your webpage where you want the linked list animation to appear:
<iframe src="https://chintu1308.github.io/sll-library/dist" width="650" height="400" frameborder="0" allowfullscreen></iframe>
Method2: Add as a Button add a button as followed
<button onclick="openAnimation()">Open Linked List Animation</button>
and add the following function to your javascript
function openAnimation() {
window.open('https://chintu1308.github.io/sll-library/dist', '_blank', 'noopener,noreferrer');
}
For mobile and web applications
Embedding in a Web Application
If you want to add the animation to a web application, such as one built with React, Vue, or Angular, you can use a similar approach with the iframe. Here's an example for a React application:
import React from 'react';
const LinkedListAnimation = () => {
return (
<div style={{ width: '100%', height: '400px', position: 'relative' }}>
<iframe src="https://chintu1308.github.io/sll-library/dist/index.html" style={{ width: '100%', height: '100%', border: 'none' }}></iframe>
</div>
);
};
export default LinkedListAnimation;
Embedding in a Mobile Application (WebView)
For mobile applications, you can use a WebView component to load the animation. Below are examples for both Android and iOS:
Android (using WebView): 1.Add WebView dependency to your build.gradle file:
dependencies {
implementation 'androidx.webkit:webkit:1.4.0'
}
2.Create a WebView in your layout XML file:
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
3.Load the URL in your Activity:
import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import androidx.appcompat.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView webView = findViewById(R.id.webview);
webView.setWebViewClient(new WebViewClient());
webView.loadUrl("https://chintu1308.github.io/sll-library/dist/index.html");
}
}
iOS (using WebView):
Create a WebView in your Storyboard or SwiftUI view:
import SwiftUI
import WebKit
struct ContentView: View {
var body: some View {
WebView(url: URL(string: "https://chintu1308.github.io/sll-library/dist/index.html")!)
}
}
struct WebView: UIViewRepresentable {
let url: URL
func makeUIView(context: Context) -> WKWebView {
return WKWebView()
}
func updateUIView(_ uiView: WKWebView, context: Context) {
let request = URLRequest(url: url)
uiView.load(request)
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}