일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 파이썬
- 우분투
- data communication
- Operating System
- 데이터베이스
- 파이썬 알고리즘
- Database
- 파이썬 첼린지
- 알고리즘
- Reversing
- 러스트 예제
- 자바 기초
- 러스트
- Python
- 러스트 프로그래밍 공식 가이드
- 데이터 통신
- 자바
- C
- java
- OS
- ubuntu
- Rust
- 백준
- 자바 개념
- Python challenge
- 파이썬 챌린지
- 백준 러스트
- 오라클
- 운영체제
- 오라클DB
- Today
- Total
목록러스트 (32)
IT’s Portfolio
🦀 Rust Day 23 🏳️ More About Cargo and Crates.io 1️⃣ 릴리즈 프로필을 이용한 빌드 커스터마이징 개발자들이 코드의 컴파일을 더 상세히 제어할 수 있도록 다양한 설정의 커스터마이징이 가능한 프로필이 준비되어 있음 각 프로필은 서로 독립적 구성 카고에는 두 개의 주 프로필 cargo build : dev 프로필 개발 과정에 적합한 기본 설정을 갖춤 cargo build --release : release 프로필 릴리즈용 빌드를 위한 기본 설정을 갖춤 [profile.dev] opt-level = 0 [profile.release] opt-level = 3 dev와 release 프로필의 기본 opt-level 설정 러스트가 코드에 적용할 최적화 수준을 지정하며 유효한 범..
🦀 Rust Day 22 🏳️ Functional Language Features: Iterators and Closures Closures : 변수에 저장할 수 있는 함수 형식의 구조 Iterators : 일련의 원소들을 처리하는 방법 1️⃣ 클로저: 주변 환경을 캡처하는 익명 함수 변수에 저장하거나 다른 함수에 인수로 전달하는 익명 함수(anonymous functions) 일반 함수와 달리 클로저는 자신이 정의된 범위 내의 값들을 '캡처(capture)'함 🤔 클로저를 이용한 동작의 추상화 fn simulated_expensive_calculation(intensity: u32) -> u32 { println!("시간이 오래 걸리는 계산을 수행 중..."); thread::sleep(..
구조체로 예약 단어 및 길이 정의 후 입력 텍스트 파일의 각 줄에 나타나는 단어들에 대하여 "줄번호-위치-단어-해당 길이" 출력(예약되지 않은 단어가 나타나면 "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..