일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- c언어 프로젝트
- 개발
- c언어
- tic-tac-toe
- Flutter
- 플러터
- android studio
- 안드로이드
- level1
- 양방향 연결리스트
- 안드로이드 튜토리얼
- android studio tutorial
- 알고리즘
- Baekjoon
- leetcode
- dart
- 안드로이드 스튜디오
- 연결리스트
- 코딩테스트
- programmers
- 기초
- 백준
- 풀이
- 코딩
- 프로젝트
- 게임
- IT
- 단방향 연결리스트
- 틱택토
- C
- Today
- Total
목록전체 글 (36)
얼렁뚱땅 개발 블로그
문제You are given an integer array nums consisting of 2 * n integers. You need to divide nums into n pairs such that:Each element belongs to exactly one pair.The elements present in a pair are equal. Return true if nums can be divided into n pairs, otherwise return false. Constraints:nums.length == 2 * n1 1 해석nums는 2 * n개의 정수로 구성된 정수 배열이 주어집니다. nums를 다음과 같은 조건을 만족하는 n개의 쌍으로 나누어야 합니다:각 요소는 정확히 하나의 ..
문제You are given a string s that consists of lowercase English letters. A string is called special if it is made up of only a single character. For example, the string "abc" is not special, whereas the strings "ddd", "zz", and "f" are special. Return the length of the longest special substring of s which occurs at least thrice, or -1 if no special substring occurs at least thrice. A substring is ..

목차더보기1. Doubly Linked List(양방향 연결리스트) 란?2. Node 구현3. Node 생성 및 삭제4. Node 추가5. Node 삽입6. Node 제거7. Node 탐색8. Doubly Linked List 길이 계산9. 전체 코드※ 해당 게시글은 C언어로 작성되었습니다. 1. Doubly Linked List(양방향 연결리스트) 란?Doubly Linked List는 Node에 이전 Node를 가리키는 Pointer와 다음 Node를 가리키고 있는 Pointer를 가지고 있는 구조입니다.2. Node 구현Doubly Linked List의 Node는 data와 다음 Node를 가리키는 Pointer, 이전 Node를 가리키는 Pointer로 구성됩니다.typedef struct _N..

목차더보기1. Singly Linked List(단방향 연결리스트) 란?2. Node 구현3. Node 생성 및 삭제4. Node 추가5. Node 삽입6. Node 제거7. Node 탐색8. Singly Linked List 길이 계산9. 전체 코드※ 해당 게시글은 C언어로 작성되었습니다. 1. Singly Linked List(단방향 연결리스트) 란?Singly Linked List는 Node의 Pointer가 다음 Node를 가리키고 있는 구조입니다.2. Node 구현Singly Linked List의 Node는 data와 다음 Node를 가리키는 Pointer로 구성이 됩니다.typedef struct _Node{ int data; struct _Node *next_node;} Node..