일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 알고리즘
- Python
- 러스트 프로그래밍 공식 가이드
- 백준 러스트
- 자바 기초
- 자바 개념
- OS
- 오라클DB
- 백준
- Reversing
- 러스트
- Database
- data communication
- 파이썬 챌린지
- 러스트 예제
- ubuntu
- java
- 파이썬
- 자바
- 오라클
- Python challenge
- 데이터베이스
- 파이썬 첼린지
- Rust
- 데이터 통신
- C
- Operating System
- 운영체제
- 우분투
- 파이썬 알고리즘
- Today
- Total
목록Development Study (174)
IT’s Portfolio
💻 The Elements of Computing System - 1 🤔 불 대수(Boolean Algebra) true/false, 예/아니오, 켜짐/꺼짐 같은 불값을 다루는 대수학 컴퓨터는 진수를 표현하고 처리하는 하드웨어이기 때문에 2진수 입력을 가공해 2진수 출력을 하는 불 함수를 정의하고 분석하는 것이 컴퓨터 아키텍쳐를 구축하는 첫 단계가 됨 🤔 하드웨어 기술 언어 CHIP Xor { IN x, y; OUT out; PARTS: Not(in=x, out=notx); Not(in=y, out=noty); And(x=x, y=noty, out=w1); And(x=notx, y=y, out=w2); Or(x=w1, y=w2, out=out); } HDL program(Xor.hdl) Xor(exclu..
구조체로 예약 단어 및 길이 정의 후 입력 텍스트 파일의 각 줄에 나타나는 단어들에 대하여 "줄번호-위치-단어-해당 길이" 출력(예약되지 않은 단어가 나타나면 "Undefined word" 메시지 출력 후 무시) 입력 파일 소스 코드 use std::{fs, io::Read, error::Error, process}; struct Optab { name: &'a str, len: i32, } impl Optab { fn new(name: &'a str, len: i32) -> Optab { Optab { name, len } } } fn read_file() -> Result { let mut f = fs::File::open("command.s")?; let mut buf = String..
단어를 모두 연결, 각 단어의 시작 위치를 단어와 함께 출력하고, 마지막에 총 길이 출력(16진수 사용) 입력 파일 소스 코드 use std::{fs, io::Read, error::Error, process}; fn read_file() -> Result { let mut f = fs::File::open("sample.s")?; let mut buf = String::new(); f.read_to_string(&mut buf)?; Ok(buf) } fn word_position(contents: String) { let mut text = String::new(); let mut p = 0; for word in contents.lines() { println!("{p:02X}: {word}"); t..
숫자 단어들에 대한 unsigned 정수를 구한 후 전체 합 출력(X'...' 형태 : 16진수, C'...' 형태 : ASCII 코드로 이루어진 16진수) 입력 파일 소스 코드 use std::{fs, io::Read, error::Error, process}; use regex::Regex; fn read_file() -> Result { let mut f = fs::File::open("numb.s")?; let mut contents = String::new(); f.read_to_string(&mut contents)?; Ok(contents) } fn split_contents(contents: &str) -> (Vec, Vec, Vec) { let mut hex ..
각 줄에 대하여 심볼, 명령어, 피연산 등 세 파트를 분리한 후, 심볼 10칸, 명령어 10칸, 피연산자 10칸으로 줄을 맞추어 출력(빈 파트는 공백 출력) 입력 파일 소스 코드 use std::{fs, io::Read, error::Error, process}; fn read_file() -> Result { let mut f = fs::File::open("sample.txt")?; let mut contents = String::new(); f.read_to_string(&mut contents)?; Ok(contents) } fn split_contents (Vec, Vec
텍스트 파일 sample.txt 를 열어서 숫자 단어, 알파벳 단어, 기타 단어 등 총 세 종류의 단어 개수를 카운트하여 출력 입력 파일 소스 코드 use std::{fs, io::Read, error::Error, process}; fn read_file() -> Result { let mut f = fs::File::open("sample.txt")?; let mut contents = String::new(); f.read_to_string(&mut contents)?; Ok(contents) } fn main() { let contents = read_file().unwrap_or_else( |err| { eprintln!("Error!\n{}", err); process::exit(1); } )..
텍스트 파일 sample.txt 를 열어서 단어의 총 개수를 카운트하여 출력 입력 파일 소스 코드 use std::{fs, io::Read, error::Error, process}; fn read_file() -> Result { let mut f = fs::File::open("sample.txt")?; let mut contents = String::new(); f.read_to_string(&mut contents)?; Ok(contents) } fn main() { let contents = read_file().unwrap_or_else( |err| { eprintln!("Error!\n{}", err); process::exit(1); } ); println!( "Number of token..
🦀 Rust Day 21 🏳️ An I/O Project: Building a Command Line Program 러스트의 속도와 안전성, 단일 바이너리 출력 그리고 교차 플랫폼 지원 등의 특징은 명령줄 도구를 만드는 데 좋음 grep(globally search a regular experssion and print) 1️⃣ 명령줄 인수 처리하기 프로젝트 이름 : minigrep 파일명과 검색할 문자열 등 두 개의 명령줄 인수를 처리 cargo run [searchstring] [example-filename.txt] 🤔 인수의 값 읽어오기 std::env::args : 표준 라이브러리에서 제공하는 전달된 명령줄 인수를 읽는 함수 명령줄 인수의 반복자(iterator) 제공 use std::env; ..