전체 글 (34) 썸네일형 리스트형 [Web] 프로젝트 1 주차 - 메인 페이지 디자인 & 구현 기능 기획 프로젝트가 시작된지 어느덧 2주차다. 시간이 정말 빠른 것 같다고 새삼 느끼게 된다. 나는 이번 프로젝트에서 웹디자인&프론트엔드의 역할을 맡았다. 1주차 동안 기획은 이미 마쳤고 이제 디자인, 설계, 구현 등을 진행하면 된다. 학교 홈페이지에 공지되느 프로그램을 더 시각적이고 편리하게 알 수 있게 하여 학생들의 참여율을 높이는 것 우리의 목표이다. 근데 기획을 더 하다보니 이 목표만으로는 새로운 학생들의 가입, 사이트 접속율에 대한 걱정이 됐다. 그리고 이왕 프로젝트 하는 거 큰 목표를 잡자! 해서 공지사항을 카테고리를 세분화해서 나누는 기능뿐만 아니라 - 실시간 인기 프로그램 UI - 추천 검색어 - 학사 일정(달력에 보이게) - 달구지 시간표 - 프로그램 모집 기간 연장 시 알림 기능 를 추가하여 학.. [백준] 11047번 동전 0 - 그리디 알고리즘 / 탐욕 알고리즘 문제 My Code import java.io.*; public class Main { static int resultNum; public static void main(String[] args) throws IOException{ BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); // N, K 입력 받기 String str = bf.readLine(); int n = Integer.parseInt(str.split(" ")[0]); int k = Integer.parseInt(str.split(" ")[1]); int count = 0; // 동전 개수 변수 선언 및 초기화 int[] arr = new int[n]; //.. [백준] 1920번 수 찾기 - 이진 탐색 알고리즘/ 함수 이용(재귀X) 문제 My Code import java.io.*; import java.util.Arrays; import java.util.StringTokenizer; public class Main { static int[] A; static int resultNum; public static void main(String[] args) throws IOException{ BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(bf.readLine()); A = new int[n]; StringTokenizer st = new StringTokenizer(bf.readLine()); for (.. [백준] 2178번 미로 탐색 - BFS / 너비 탐색 알고리즘 / 클래스 문제 My Code import java.io.*; import java.util.LinkedList; import java.util.Queue; class ArrGraph{ private int[][] arrGrapgh; //인접 행렬 선언 boolean[][] visit; // 방문 배열 선언 private int n, m; //행과 열 선언 //상하좌우 탐색 배열 선언 및 초기화 private int[] dx = {0, 1, 0, -1}; private int[] dy = {1, 0, -1, 0}; //생성자 public ArrGraph(int n, int m) { this.arrGrapgh = new int[n][m]; this.visit = new boolean[n][m]; this.n = n;.. [Java] BFS 구현하기 - 재귀 함수&Queue이용 / 인접 리스트 ex) Code import java.io.*; import java.util.LinkedList; import java.util.Queue; public class Main { static LinkedList[] adj; static boolean[] visit; static Queue queue; public static void main(String[] args) throws IOException{ BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); //정점과 간선 선언 및 저장 String str = bf.readLine(); int n = Integer.parseInt(str.split(" ")[0]); int m .. [백준] 11724번 연결 요소의 개수 - DFS방식 / 재귀 함수 이용/ 무방향 그래프 문제 My Code import java.io.*; import java.util.LinkedList; import java.util.Stack; public class Main { static LinkedList[] linkedList; static Stack stack; static int[] result; static int index = 0; static boolean[] tf; public static void main(String[] args) throws IOException{ BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int[] input = new int[2]; stack = new Stack(); .. [Java] DFS 구현하기 - 재귀 함수 이용 / 인접 리스트 / 배열 ex) Code import java.io.*; import java.util.LinkedList; public class Main { static LinkedList[] linkedList; static boolean[] visit; public static void main(String[] args) throws IOException{ BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); //정점과 간선 입력&저장 String str = bf.readLine(); int n = Integer.parseInt(str.split(" ")[0]); int m = Integer.parseInt(str.split(" ")[1]); .. [백준] 1517번 버블 소트 - 병합 정렬 / 버블 정렬 문제 My Code import java.io.*; import java.util.StringTokenizer; public class Main { static int[] testArray; static int count; public static void main(String[] args) throws IOException{ BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(bf.readLine()); int[] array = new int[N]; testArray = new int[N]; count = 0; StringTokenizer st = new StringTokeniz.. 이전 1 2 3 4 5 다음