본문 바로가기

개발자가 되고 싶은 개발자

검색하기
개발자가 되고 싶은 개발자
프로필사진 Fullth

  • 전체보기 (101)
    • Dev (93)
      • JavaScript & TypeScript (18)
      • Debug & Tools & Tips (15)
      • Node.js (3)
      • DataBase (11)
      • DevOps (5)
      • Algorithm (8)
      • CS (4)
      • Flutter (4)
      • Python (1)
      • FrontEnd (2)
      • Java & Spring (22)
    • Diary (8)
Guestbook
Notice
Recent Posts
Recent Comments
Link
  • 오픈튜토리얼스
«   2025/05   »
일 월 화 수 목 금 토
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
Tags
  • db
  • 프로젝트 여러 개
  • SQL
  • datagrip 한글깨짐
  • REST
  • InteliJ
  • Stream
  • tecoble
  • TypeScript
  • Mac
  • JavaScript
  • 프로그래머스
  • ojdbc6
  • node.js
  • Spring
  • 코어자바스크립트
  • 봤어요처리
  • javascript error
  • oracle
  • Java
  • eqauls-hashcode
  • maven
  • kubernetes dns 질의
  • svn
  • DART
  • class-transformer
  • 인텔리제이
  • MySQL
  • @RequestBody
  • Aspect
more
Archives
Today
Total
관리 메뉴
  • 글쓰기
  • 방명록
  • RSS
  • 관리

목록Queue (1)

개발자가 되고 싶은 개발자

[DataStructure] Queue

기본적인 자료구조인 큐에 대해서 작성한 소스를 통해 알아보도록 하겠습니다. 전체소스 import java.util.NoSuchElementException; class Queue { private Node front; private Node rear; public void add(T item) { Node node = new Node(item); if(rear != null) rear.next = node; rear = node; if(front == null) front = rear; } public T remove() { if(front == null) throw new NoSuchElementException(); T data = front.data; front = front.next; if(fro..

Dev/CS 2021. 11. 23. 20:07
이전 Prev 1 Next 다음

Blog is powered by kakao / Designed by Tistory

티스토리툴바