npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

linkedlist_for_beginner

v1.0.0

Published

A simple implementation of a Linked List data structure in TypeScript.

Downloads

1

Readme

재사용을 위한 linked list 모듈

Table of Contents

설명

LinkedList는 TypeScript로 구현된 간단한 링크드 리스트(Linked List) 자료구조 라이브러리입니다.

설치 방법

npm을 사용하여 linkedlist 라이브러리를 설치할 수 있습니다:

npm install linkedlist

사용 방법

프로젝트에서 linkedlist 라이브러리를 사용하려면 먼저 LinkedList 클래스를 import 해야 합니다.

import LinkedList from "linkedlist";

새로운 링크드 리스트 생성:

const list = new LinkedList();

API Reference

| Function | Description | | :----------------------: | :------------------------------------------------: | | append(data) | 주어진 데이터를 리스트 끝에 추가합니다. | | insert(data, position) | 주어진 데이터를 리스트의 지정된 위치에 삽입합니다. | | remove(data) | 리스트에서 주어진 데이터의 요소를 제거합니다. | | print() | 링크드 리스트를 콘솔에 출력합니다. (디버깅용) |

append(data)

Parameters

  1. data (any): 삽입할 데이터로, 링크드 리스트에 저장될 값입니다. data는 어떤 타입의 데이터도 가능합니다. 이 메서드는 주어진 data를 새로운 노드로 생성하여 링크드 리스트의 끝에 추가합니다.
사용 방법

list.append(1) -- 요소를 링크드 리스트 끝에 추가

insert(data, position)

Parameters

  1. data (any): 삽입할 데이터로, 링크드 리스트에 저장될 값입니다. data는 어떤 타입의 데이터도 가능합니다.

  2. position (number): 데이터를 삽입할 위치로, 0부터 시작하여 리스트의 인덱스를 나타냅니다. 즉, position이 0인 경우 데이터가 리스트의 맨 앞에 삽입되고, position이 리스트의 길이보다 큰 경우 데이터는 리스트의 맨 끝에 삽입됩니다.

사용 방법

list.insert(4, 1) -- 요소를 링크드 리스트 특정 위치에 추가

remove(data)

Parameters

  1. data (any): 링크드 리스트에서 삭제하고자 하는 노드의 데이터입니다. 이 함수는 리스트에서 해당 데이터를 가진 노드를 찾아서 삭제합니다. data는 어떤 타입의 데이터도 가능합니다.
사용 방법

list.remove(2) -- 링크드 리스트에서 요소 제거

print()

Parameters

  1. print() 함수는 매개변수가 없습니다. 이 함수는 링크드 리스트에 저장된 모든 노드의 데이터를 출력합니다.
사용 방법

list.print() -- 링크드 리스트에 저장된 데이터가 순서대로 콘솔에 출력