일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 실행권한
- perfect
- PYTHON
- mysql
- ubuntu
- openpyxl
- rethinkdb
- STF_PortForwarding
- GoCD
- appium server
- nGrinder
- Jupyter Notebook
- ssh
- ftp
- postgres
- Materials
- insert
- port forwarding
- SWIFT
- postgresql
- create table
- appium
- 28015
- kitura
- centos
- STF
- sshpass
- Jupyter
- nohup
- nmap
- Today
- Total
don't stop believing

간단하게 html, css, javascript를 올려볼 node 서버가 필요했습니다. Windows에 빠르게 설치해 보겠습니다. 아래 node js 페이지에서 Windows 설치 파일(msi)을 다운 받습니다. https://nodejs.org/en/download/ Download | Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org node-v10.15.3-x64.msi 파일을 다운 받았습니다. 버전은 10.15.3이네요. 다운받은 설치 파일을 더블 클릭해 설치를 시작합니다. 설치 과정은 오른쪽 이미지처럼 Destination Folder(설치 경로)와 Custom Setting 정도의..
Stack과 대비되는 Queue 입니다. Queue에서는 FIFO(First-In, First-Out)의 개념을 가지고 있습니다. https://en.wikipedia.org/wiki/Queue_(abstract_data_type) Queue (abstract data type) - Wikipedia Representation of a FIFO (first in, first out) queue In computer science, a queue is a collection in which the entities in the collection are kept in order and the principal (or only) operations on the collection are the addition..
자료구조 중 스택입니다. Stack과 Queue는 항상 같이 설명됩니다. https://en.wikipedia.org/wiki/Stack_(abstract_data_type) Stack (abstract data type) - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Simple representation of a stack runtime with push and pop operations. In computer science, a stack is an abstract data type that serves as a collection of elements, with two principal en.w..
이진 탐색 트리입니다. https://en.wikipedia.org/wiki/Binary_search_tree Binary search tree - Wikipedia A binary search tree of size 9 and depth 3, with 8 at the root. The leaves are not drawn. In computer science, binary search trees (BST), sometimes called ordered or sorted binary trees, are a particular type of container: data structures that store "items en.wikipedia.org 이진 탐색 트리는 아래아 같은 조건을 가지고 있습니다. ..

이번에는 자료구조입니다. 이중 연결 리스트는 하나의 노드(데이터)가 앞 뒤 노드를 참조하는 구조입니다. https://en.wikipedia.org/wiki/Doubly_linked_list Doubly linked list - Wikipedia In computer science, a doubly linked list is a linked data structure that consists of a set of sequentially linked records called nodes. Each node contains three fields: two link fields (references to the previous and to the next node in the sequence of no en...
배열에서 찾으려는 값이 있는지 이진 검색을 합니다. 배열의 범위를 2분할 하면서 찾는 방법입니다. https://en.wikipedia.org/wiki/Binary_search_algorithm Binary search algorithm - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Search algorithm finding the position of a target value within a sorted array This article is about searching a finite sorted array. For searching continuous function values, see bi..