# let st1 = {name = "Taro Yamada"; id = };; val st1 : student = {name="taro Yamada"; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n
|
|
|
- しのぶ ことじ
- 7 years ago
- Views:
Transcription
1 II 6 / : (OCaml ) 1 (field) name id type # type student = {name : string; id : int};; type student = { name : string; id : int; } student {} type = { 1 : 1 ;...; n : n } { 1 = 1 ;...; n = n } 1
2 # let st1 = {name = "Taro Yamada"; id = };; val st1 : student = {name="taro Yamada"; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {name = n; id = i} = n ^ " s ID is " ^ string_of_int i;; val string_of_student : student -> string = <fun> # string_of_student st1;; - : string = "Taro Yamada s ID is ". # let string_of_student st = st.name ^ " s ID is " ^ string_of_int st.id;; val string_of_student : student -> string = <fun> { with 1 = 1 ;...; n = n } # type teacher = {tname : string; room : string; ext : int};; type teacher = { tname : string; room : string; ext : int; } # let t1 = {tname = "Atsushi Igarashi"; room = "604B"; ext = 46808};; val t1 : teacher = {tname="atsushi Igarashi"; room="604b"; ext=46808} # let t2 = {t1 with room = "605B"};; val t2 : teacher = {tname="atsushi Igarashi"; room="605b"; ext=46808} with t1 room t2 # t1;; - : teacher = {tname="atsushi Igarashi"; room="604b"; ext=46808} t1 t2 2
3 {...} let f (x : {name : string; id : int}) =... type student_teacher = {s : {name : string; id : int}; t : {tname : string; room : string; ext : int}};; # type student_teacher = {s : student; t : teacher};; type student_teacher = { s : student; t : teacher; } # let st = {s = {name = "Taro Yamada"; id = }; t = t1};; val st : student_teacher = {s={name="taro Yamada"; id=123456}; t={tname="atsushi Igarashi"; room="604b"; ext=46808}} / type # type foo = {name : bool};; type foo = { name : bool; } name student name # {name = "Ichiro Suzuki"; id = 51};; Characters 9-24: This expression has type string but is here used with type bool # st1.name;; Characters 0-3: This expression has type student but is here used with type foo (name space) 3
4 2 4 4, 9 (2, 4) 4 7 ( ) ((2, 4) 8 ) ( ) # type figure = # Point # Circle of int # Rectangle of int * int # Square of int;; type figure = Point Circle of int Rectangle of int * int Square of int type figure Point, Circle, Rectangle, Square (constructor) of of ( ) # let c = Circle 3;; val c : figure = Circle 3 # let figs = [Point; Square 5; Rectangle (4, 5)];; val figs : figure list = [Point; Square 5; Rectangle (4, 5)] 4
5 match # let area = function # Point -> 0 # Circle r -> r * r * 3 (* elementary school approximation :-) *) # Rectangle (lx, ly) -> lx * ly # Square l -> l * l;; val area : figure -> int = <fun> function ( ) # area c;; - : int = 27 # map area figs;; - : int list = [0; 25; 20] or ( ) # let enclosing_square = function # Point -> Square 1 # Circle r -> Square (r * 2) # Rectangle (_, l) Square l -> Square l;; val enclosing_square : figure -> figure = <fun> Rectangle (_, l) Square l or 1 2 ( ) ( -> ) / or 5
6 # let similar x y = # match (x, y) with # (Point, Point) (Circle _, Circle _) (Square _, Square _) -> true # (Rectangle (l1, l2), Rectangle (l3, l4)) -> (l3 * l2 - l4 * l1) = 0 # _ -> false;; val similar : figure -> figure -> bool = <fun> # similar (Rectangle (2, 4)) (Rectangle (1, 2));; - : bool = true 1. (_) 2. (A...Z, a...z, 0...9) ( ) 3 Pascal, C, C++ (enum ) # type color = Black Blue Red Magenta Green Cyan Yellow White;; type color = Black Blue Red Magenta Green Cyan Yellow White enum C ( ) 8 # let reverse = function # Black -> White Blue -> Yellow Red -> Cyan Magenta -> Green # Green -> Magenta Cyan -> Red Yellow -> Blue White -> Black;; val reverse : color -> color = <fun> bool type bool = true false if match if 1 then 2 else 3 match 1 with true -> 2 false -> 3 OCaml bool 6
7 of 1 1 # type nat = Zero OneMoreThan of nat;; type nat = Zero OneMoreThan of nat # let zero = Zero and two = OneMoreThan (OneMoreThan Zero);; val zero : nat = Zero val two : nat = OneMoreThan (OneMoreThan Zero) n n m 1 n m n 1 # let rec add m n = # match m with Zero -> n OneMoreThan m -> OneMoreThan (add m n);; val add : nat -> nat -> nat = <fun> # add two two;; - : nat = OneMoreThan (OneMoreThan (OneMoreThan (OneMoreThan Zero))) Zero [] OneMoreThan cons nat # type intlist = INil ICons of int * intlist;; type intlist = INil ICons of int * intlist ( ) and # type fl_str_list = FNil FCons of float * str_fl_list # and str_fl_list = SNil SCons of string * fl_str_list;; type fl_str_list = FNil FCons of float * str_fl_list type str_fl_list = SNil SCons of string * fl_str_list # let fslist = FCons (3.14, SCons ("foo", FCons (2.7, SNil)));; val fslist : fl_str_list = FCons (3.14, SCons ("foo", FCons (2.7, SNil))) 7
8 2 ( ) # let rec length_fs = function # FNil -> 0 # FCons (_, rest_sf) -> 1 + length_sf rest_sf # and length_sf = function # SNil -> 0 # SCons (_, rest_fs) -> 1 + length_fs rest_fs;; val length_fs : fl_str_list -> int = <fun> val length_sf : str_fl_list -> int = <fun> # length_fs fslist;; - : int = 3 intlist stringlist...list OCaml ( ) # type a list = Nil Cons of a * a list;; type a list = Nil Cons of a * a list a # type a option = None Some of a;; type a option = None Some of a None Some v v (Java, C null NULL ) ocaml [] 8
9 type [ 1 ] 1 = 11 [of 11 ] 1n [of 1n ] and [ 2 ] 2 = 21 [of 21 ] 2m [of 2m ] and [ 3 ] 3 =. 4 Case Study: (tree) (node) 0 (child node) (root) UNIX ( ) n n n = 1 ( ) ( leaf ) left right OCaml # type a tree = Lf Br of a * a tree * a tree;; type a tree = Lf Br of a * a tree * a tree Lf Br ( /branch) tree ( ) a b c d e f # let chartree = Br ( a, Br ( b, Br ( d, Lf, Lf), Lf), # Br ( c, Br ( e, Lf, Lf), Br ( f, Lf, Lf)));; val chartree : char tree = Br ( a, Br ( b, Br ( d, Lf, Lf), Lf), Br ( c, Br ( e, Lf, Lf), Br ( f, Lf, Lf))) 9
10 Br (.., Lf, Lf) ( ) # let rec size = function # Lf -> 0 # Br (_, left, right) -> 1 + size left + size right;; val size : a tree -> int = <fun> # let rec depth = function # Lf -> 0 # Br (_, left, right) -> 1 + max (depth left) (depth right);; val depth : a tree -> int = <fun> t size(t) 2 depth(t) 1 size(t) = 2 depth(t) 1 (complete binary tree) # let comptree = Br(1, Br(2, Br(4, Lf, Lf), # Br(5, Lf, Lf)), # Br(3, Br(6, Lf, Lf), # Br(7, Lf, Lf)));; val comptree : int tree = Br (1, Br (2, Br (4, Lf, Lf), Br (5, Lf, Lf)), Br (3, Br (6, Lf, Lf), Br (7, Lf, Lf))) 3 # size comptree;; - : int = 7 # depth comptree;; - : int = 3 (preorder), (inorder) (postorder) # let rec preorder = function # Lf -> [] # Br (x, left, right) -> x :: (preorder (preorder right);; val preorder : a tree -> a list = <fun> # preorder comptree;; - : int list = [1; 2; 4; 5; 3; 6; 7] 10
11 # let rec inorder = function # Lf -> [] # Br (x, left, right) -> (inorder (x :: inorder right);; val inorder : a tree -> a list = <fun> # inorder comptree;; - : int list = [4; 2; 5; 1; 6; 3; 7] # let rec postorder = function # Lf -> [] # Br (x, left, right) -> (postorder (postorder [x];; val postorder : a tree -> a list = <fun> # postorder comptree;; - : int list = [4; 5; 2; 6; 7; 3; ( ) (cons) ( ) # let rec preord t l = # match t with # Lf -> l # Br(x, left, right) -> x :: (preord left (preord right l));; val preord : a tree -> a list -> a list = <fun> # preord comptree [];; - : int list = [1; 2; 4; 5; 3; 6; 7] (binary search tree) Br (4, Br (2, Lf, Br (3, Lf, Lf)), Br (5, Lf, Lf)) Br (3, Br (2, Br (4, Lf, Lf), Lf), Br (5, Lf, Lf)) mem add # let rec mem t x = # match t with # Lf -> false 11
12 # Br (y, left, right) -> # if x = y then true # else if x < y then mem left x else mem right x # let rec add t x = # match t with # Lf -> Br (x, Lf, Lf) # (Br (y, left, right) as whole) -> # if x = y then whole # else if x < y then Br(y, add left x, right) else Br(y, left, add right x);; val mem : a tree -> a -> bool = <fun> val add : a tree -> a -> a tree = <fun> false true whole 5 Case Study: ( ) unit type # type a seq = Cons of a * (unit -> a seq);; type a seq = Cons of a * (unit -> a seq) seq list tree Cons of tail from n 1 12
13 # let rec from n = Cons (n, fun () -> from (n + 1));; val from : int -> int seq = <fun> fun () -> fun () ->... tail let rec list_from n = n :: list_from (n + 1) list_from from (thunk) lazy ( 3 ) ( ) lazy n # let head (Cons (x, _)) = x;; val head : a seq -> a = <fun> # let tail (Cons (_, f)) = f ();; val tail : a seq -> a seq = <fun> # let rec take n s = # if n = 0 then [] else head s :: take (n - 1) (tail s);; val take : int -> a seq -> a list = <fun> # take 10 (from 4);; - : int list = [4; 5; 6; 7; 8; 9; 10; 11; 12; 13] tail () match take map # let rec mapseq f (Cons (x, tail)) = # Cons (f x, fun () -> mapseq f (tail ()));; val mapseq : ( a -> b) -> a seq -> b seq = <fun> # let reciprocals = mapseq (fun x -> 1.0 /. float_of_int x) (from 2);; val reciprocals : float seq = Cons (0.5, <fun>) # take 5 reciprocals;; - : float list = [0.5; ; 0.25; 0.2; ] reciprocals 0.5 take take tail fun () -> (tail ()) ( ) 13
14 2 2 (3, 4, 5,... ) 2 (4, 6, 8,... ) 3 (5, 7, 9,... ) 3 (9, 15,... ) 5 seq n sift let rec sift n =...;; # let rec sieve (Cons (x, f)) = Cons (x, fun () -> sieve (sift x (f())));; val sieve : int seq -> int seq = <fun> # let primes = sieve (from 2);; val primes : int seq = Cons (2, <fun>) # take 20 primes;; - : int list = [2; 3; 5; 7; 11; 13; 17; 19; 23; 29; 31; 37; 41; 43; 47; 53; 59; 61; 67; 71] # # let rec nthseq n (Cons (x, f)) = # if n = 1 then x else nthseq (n - 1) (f());; val nthseq : int -> a seq -> a = <fun> # nthseq 1000 primes;; - : int = Exercise 6.1 loc_fig xy ( Rectangle (x, y) x x ) overlap type loc_fig = {x : int; y : int; fig : figure};; 14
15 Exercise 6.2 nat int int_of_nat, nat mul nat ( 0 n = 0) monus ( ) Exercise 6.3 monus 0 n (n > 0) None nat -> nat -> nat option minus Exercise 6.4 x n comptree x n Exercise 6.5 preord inord, postord Exercise 6.6 reflect # reflect comptree;; - : int tree = Br (1, Br (3, Br (7, Lf, Lf), Br (6, Lf, Lf)), Br (2, Br (5, Lf, Lf), Br (4, Lf, Lf))) t preorder(reflect(t)) =? inorder(reflect(t)) =? postorder(reflect(t)) =? Exercise 6.7 # type arith = # Const of int Add of arith * arith Mul of arith * arith;; type arith = Const of int Add of arith * arith Mul of arith * arith # (* exp stands for (3+4) * (2+5) *) # let exp = Mul (Add (Const 3, Const 4), Add (Const 2, Const 5));; val exp : arith = Mul (Add (Const 3, Const 4), Add (Const 2, Const 5)) string_of_arith, (i 11 i 1n1 ) + + (i m1 i mnm ) expand # string_of_arith exp;; - : string = "((3+4)*(2+5))" # string_of_arith (expand exp);; - : string = "(((3*2)+(3*5))+((4*2)+(4*5)))" Exercise 6.8 1, 2, 3, 4 add Exercise 6.9 sift 15
Parametric Polymorphism
ML 2 2011/04/19 Parametric Polymorphism Type Polymorphism ? : val hd_int : int list - > int val hd_bool : bool list - > bool val hd_i_x_b : (int * bool) list - > int * bool etc. let hd_int = function (x
# let rec sigma (f, n) = # if n = 0 then 0 else f n + sigma (f, n-1);; val sigma : (int -> int) * int -> int = <fun> sigma f n ( : * -> * ) sqsum cbsu
II 4 : 2001 11 7 keywords: 1 OCaml OCaml (first-class value) (higher-order function) 1.1 1 2 + 2 2 + + n 2 sqsum 1 3 + 2 3 + + n 3 cbsum # let rec sqsum n = # if n = 0 then 0 else n * n + sqsum (n - 1)
Jacques Garrigue
Jacques Garrigue Garrigue 1 Garrigue 2 $ print_lines () > for i in $1; do > echo $i > done $ print_lines "a b c" a b c Garrigue 3 Emacs Lisp (defun print-lines (lines) (dolist (str lines) (insert str)
ML Edinburgh LCF ML Curry-Howard ML ( ) ( ) ( ) ( ) 1
More Logic More Types ML/OCaml GADT Jacques Garrigue ( ) Jacques Le Normand (Google) Didier Rémy (INRIA) @garriguejej ocamlgadt ML Edinburgh LCF ML Curry-Howard ML ( ) ( ) ( ) ( ) 1 ( ) ML type nebou and
「計算と論理」 Software Foundations その4
Software Foundations 4 [email protected] http://www.fos.kuis.kyoto-u.ac.jp/~igarashi/class/cal/ November 7, 2017 ( ) ( 4) November 7, 2017 1 / 51 Poly.v ( ) ( 4) November 7, 2017 2 / 51 : (
「計算と論理」 Software Foundations その3
Software Foundations 3 [email protected] October 24, 2017 ( ) ( 3) October 24, 2017 1 / 47 Lists.v ( ) ( ) ( ) ( 3) October 24, 2017 2 / 47 ( ) Inductive natprod : Type := pair : nat nat natprod.
: gettoken(1) module P = Printf exception End_of_system (* *) let _ISTREAM = ref stdin let ch = ref ( ) let read () = (let c =!ch in ch := inp
7 OCaml () 1. 2. () (compiler) (interpreter) 2 OCaml (syntax) (BNF,backus normal form ) 1 + 2; let x be 2-1 in x; ::= ; let be in ; ::= + - ::= * / ::= 7.1 ( (printable characters) (tokens) 1 (lexical
fp.gby
1 1 2 2 3 2 4 5 6 7 8 9 10 11 Haskell 12 13 Haskell 14 15 ( ) 16 ) 30 17 static 18 (IORef) 19 20 OK NG 21 Haskell (+) :: Num a => a -> a -> a sort :: Ord a => [a] -> [a] delete :: Eq a => a -> [a] -> [a]
ML 演習 第 4 回
ML 演習第 4 回 おおいわ Mar 6, 2003 今回の内容 補足 Ocaml のモジュールシステム structure signature functor Ocaml コンパイラの利用 2 識別子について 利用可能文字 先頭文字 : A~Z, a~z, _ ( 小文字扱い ) 2 文字目以降 : A~Z, a~z, 0~9, _, 先頭の文字の case で 2 つに区別 小文字 : 変数,
haskell.gby
Haskell 1 2 3 Haskell ( ) 4 Haskell Lisper 5 Haskell = Haskell 6 Haskell Haskell... 7 qsort [8,2,5,1] [1,2,5,8] "Hello, " ++ "world!" "Hello, world!" 1 + 2 div 8 2 (+) 1 2 8 div 2 3 4 map even [1,2,3,4]
掲示用ヒート表 第34回 藤沢市長杯 2017
34 8 4 2 Round 1 Round 2 SEMI FINAL 30 16 8 H1 H5 H1 H1 Red 12401821 2 Red 12601360 2 1-1 Red 12501915 1 1-1 Red 12501915 4 White 12900051 4 White 12600138 3 3-1 White 12802412 2 3-1 White 12801091 1 Yellow
presen.gby
[email protected] 1 2 Paul Graham 3 Andrew Hunt and David Thomas 4 5 Java 6 Java Java Java 3 7 Haskell Scala Scala 8 9 Java Java Dean Wampler AWT ActionListener public interface ActionListener extends EventListener
monad.gby
2012.11.18 1 1 2 2 DSL 3 4 Q) A) 5 Q) A) 6 7 8 Haskell 9 10 Parser data Parser a = Parser (String -> [(a,string)]) Parser pwrap :: a -> Parser a pwrap v = Parser $ \inp -> [(v,inp)] Parser pbind :: Parser
VDM-SL VDM VDM-SL Toolbox VDM++ Toolbox 1 VDM-SL VDM++ Web bool
VDM-SL VDM++ 23 6 28 VDM-SL Toolbox VDM++ Toolbox 1 VDM-SL VDM++ Web 2 1 3 1.1............................................... 3 1.1.1 bool......................................... 3 1.1.2 real rat int
★結果★ 藤沢市長杯 掲示用ヒート表
AA 35 Round 1 8 4 Round 2 28 16 SEMI FINAL H1 H5 H1 H1 Red 12802015 1 Red 12802109 1 1-1 Red 12802015 2 1-1 Red 12702346 White 12800232 2 White 12702406 3 3-1 White 12702346 1 3-1 White 12802109 Yellow
class IntCell { private int value ; int getvalue() {return value; private IntCell next; IntCell next() {return next; IntCell(int value) {this.value =
Part2-1-3 Java (*) (*).class Java public static final 1 class IntCell { private int value ; int getvalue() {return value; private IntCell next; IntCell next() {return next; IntCell(int value) {this.value
untitled
II 4 Yacc Lex 2005 : 0 1 Yacc 20 Lex 1 20 traverse 1 %% 2 [0-9]+ { yylval.val = atoi((char*)yytext); return NUM; 3 "+" { return + ; 4 "*" { return * ; 5 "-" { return - ; 6 "/" { return / ; 7 [ \t] { /*
class IntCell { private int value ; int getvalue() {return value; private IntCell next; IntCell next() {return next; IntCell(int value) {this.value =
Part2-1-3 Java (*) (*).class Java public static final 1 class IntCell { private int value ; int getvalue() {return value; private IntCell next; IntCell next() {return next; IntCell(int value) {this.value
syspro-0405.ppt
3 4, 5 1 UNIX csh 2.1 bash X Window 2 grep l POSIX * more POSIX 3 UNIX. 4 first.sh #!bin/sh #first.sh #This file looks through all the files in the current #directory for the string yamada, and then prints
untitled
II yacc 005 : 1, 1 1 1 %{ int lineno=0; 3 int wordno=0; 4 int charno=0; 5 6 %} 7 8 %% 9 [ \t]+ { charno+=strlen(yytext); } 10 "\n" { lineno++; charno++; } 11 [^ \t\n]+ { wordno++; charno+=strlen(yytext);}
ron.dvi
12 Effect of occlusion and perception of shadow in depth perception caused by moving shadow. 1010361 2001 2 5 (Occlusion), i Abstract Effect of occlusion and perception of shadow in depth perception caused
slide9.dvi
- val a = Array.array(20,""); val a = [ "","","","","","","","","","",\ "","",... ] : string array - Array.update(a,5,"abc"); val it = () : unit - Array.sub(a,5); val it = "abc" : string 9-1 - Array.length(a);
Java演習(4) -- 変数と型 --
50 20 20 5 (20, 20) O 50 100 150 200 250 300 350 x (reserved 50 100 y 50 20 20 5 (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; (reserved public class Blocks1 extends
解きながら学ぶJava入門編
44 // class Negative { System.out.print(""); int n = stdin.nextint(); if (n < 0) System.out.println(""); -10 Ÿ 35 Ÿ 0 n if statement if ( ) if i f ( ) if n < 0 < true false true false boolean literalboolean
1. A0 A B A0 A : A1,...,A5 B : B1,...,B
1. A0 A B A0 A : A1,...,A5 B : B1,...,B12 2. 3. 4. 5. A0 A, B Z Z m, n Z m n m, n A m, n B m=n (1) A, B (2) A B = A B = Z/ π : Z Z/ (3) A B Z/ (4) Z/ A, B (5) f : Z Z f(n) = n f = g π g : Z/ Z A, B (6)
K227 Java 2
1 K227 Java 2 3 4 5 6 Java 7 class Sample1 { public static void main (String args[]) { System.out.println( Java! ); } } 8 > javac Sample1.java 9 10 > java Sample1 Java 11 12 13 http://java.sun.com/j2se/1.5.0/ja/download.html
1. A0 A B A0 A : A1,...,A5 B : B1,...,B12 2. 5 3. 4. 5. A0 (1) A, B A B f K K A ϕ 1, ϕ 2 f ϕ 1 = f ϕ 2 ϕ 1 = ϕ 2 (2) N A 1, A 2, A 3,... N A n X N n X N, A n N n=1 1 A1 d (d 2) A (, k A k = O), A O. f
/ SCHEDULE /06/07(Tue) / Basic of Programming /06/09(Thu) / Fundamental structures /06/14(Tue) / Memory Management /06/1
I117 II I117 PROGRAMMING PRACTICE II 2 MEMORY MANAGEMENT 2 Research Center for Advanced Computing Infrastructure (RCACI) / Yasuhiro Ohara [email protected] / SCHEDULE 1. 2011/06/07(Tue) / Basic of Programming
5 p Point int Java p Point Point p; p = new Point(); Point instance, p Point int 2 Point Point p = new Point(); p.x = 1; p.y = 2;
5 p.1 5 JPanel (toy example) 5.1 2 extends : Object java.lang.object extends... extends Object Point.java 1 public class Point { // public int x; public int y; Point x y 5.1.1, 5 p.2 5 5.2 Point int Java
Page 1 of 6 B (The World of Mathematics) November 20, 2006 Final Exam 2006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (10pts) (a
Page 1 of 6 B (The World of Mathematics) November 0, 006 Final Exam 006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (a) (Decide whether the following holds by completing the truth
listings-ext
(6) Python (2) ( ) [email protected] 5 Python (2) 1 5.1 (statement)........................... 1 5.2 (scope)......................... 11 5.3 (subroutine).................... 14 5 Python (2) Python 5.1
double float
2015 3 13 1 2 2 3 2.1.......................... 3 2.2............................. 3 3 4 3.1............................... 4 3.2 double float......................... 5 3.3 main.......................
r07.dvi
19 7 ( ) 2019.4.20 1 1.1 (data structure ( (dynamic data structure 1 malloc C free C (garbage collection GC C GC(conservative GC 2 1.2 data next p 3 5 7 9 p 3 5 7 9 p 3 5 7 9 1 1: (single linked list 1
アルゴリズムとデータ構造1
1 200972 (sakai.keiichi@kochi [email protected]) http://www.info.kochi ://www.info.kochi-tech.ac.jp/k1sakai/lecture/alg/2009/index.html 29 20 32 14 24 30 48 7 19 21 31 Object public class
ohp07.dvi
19 7 ( ) 2019.4.20 1 (data structure) ( ) (dynamic data structure) 1 malloc C free 1 (static data structure) 2 (2) C (garbage collection GC) C GC(conservative GC) 2 2 conservative GC 3 data next p 3 5
Java学習教材
Java 2016/4/17 Java 1 Java1 : 280 : (2010/1/29) ISBN-10: 4798120987 ISBN-13: 978-4798120980 2010/1/29 1 Java 1 Java Java Java class FirstExample { public static void main(string[] args) { System.out.println("
Emacs ML let start ::= exp (1) exp ::= (2) fn id exp (3) ::= (4) (5) ::= id (6) const (7) (exp) (8) let val id = exp in
Emacs, {l06050,sasano}@sic.shibaura-it.ac.jp Eclipse Visual Studio Standard ML Haskell Emacs 1 Eclipse Visual Studio variable not found LR(1) let Emacs Emacs Emacs Java Emacs JDEE [3] JDEE Emacs Java 2
yacc.dvi
2017 c 8 Yacc Mini-C C/C++, yacc, Mini-C, run,, Mini-C 81 Yacc Yacc, 1, 2 ( ), while ::= "while" "(" ")" while yacc 1: st while : lex KW WHILE lex LPAREN expression lex RPAREN statement 2: 3: $$ = new
2018年度「プログラミング言語」配布資料 (12)
2018 年度 プログラミング言語 配布資料 (12) 五十嵐淳 2019 年 1 月 1 日 目次 1 2 分探索木 in C (C/bst/) 1 1.1 2 分木の表現............................................. 1 1.2 探索.................................................. 4 1.3 挿入..................................................
r1.dvi
Ruby 2009.9.7 1 ( ) --- ( ( ) ( ) 1 --- ( ) 1 ( ) (?) IT 7K( )?? ( ) ( )? IT ( ) --- ( ) 1 ( ) --- ( ) (?) 2-3% Top-Level ICT Professional 5% ICT Professional 10% 100% 50% 20% Devl. Experiment Adv. ICT
SystemC言語概論
SystemC CPU S/W 2004/01/29 4 SystemC 1 SystemC 2.0.1 CPU S/W 3 ISS SystemC Co-Simulation 2004/01/29 4 SystemC 2 ISS SystemC Co-Simulation GenericCPU_Base ( ) GenericCPU_ISS GenericCPU_Prog GenericCPU_CoSim
e ::= c op(e 1,..., e n ) if e 1 then e 2 else e 3 let x = e 1 in e 2 x let rec x y 1... y n = e 1 in e 2 e e 1... e n (e 1,..., e n ) let (x 1,..., x
e ::= c op(e 1,..., e n ) if e 1 then e 2 else e 3 let x = e 1 in e 2 x let rec x y 1... y n = e 1 in e 2 e e 1... e n (e 1,..., e n ) let (x 1,..., x n ) = e 1 in e 2 Array.create e 1 e 2 e 1.(e 2 ) e
bc0710_010_015.indd
Case Study.01 Case Study.02 30 Case Study.05 Case Study.03 Case Study.04 Case Study.06 Case Study.07 Case Study.08 Case Study.21 Case Study.22 Case Study.24 Case Study.23 Case Study.25 Case Study.26
ALG ppt
2012614 ([email protected]) http://www.info.kochi-tech.ac.jp/k1sakai/lecture/alg/2012/index.html 1 2 2 3 29 20 32 14 24 30 48 7 19 21 31 4 N O(log N) 29 O(N) 20 32 14 24 30 48 7 19 21 31 5
Pascal Pascal Free Pascal CPad for Pascal Microsoft Windows OS Pascal
Pascal Pascal Pascal Free Pascal CPad for Pascal Microsoft Windows OS 2010 10 1 Pascal 2 1.1.......................... 2 1.2.................. 2 1.3........................ 3 2 4 2.1................................
プログラミング言語 8 字句解析器(lexer)と構文解析器(parser)
8 (lexer) (parser) 1 / 73 (lexer, tokenizer) (parser) Web Page (HTML XML) CSV, SVG,...... config file... ( )! 2 / 73 1 1 OCaml : ocamllex ocamlyacc 2 Python : ply 2! 3 / 73 ( ) 字句解析器 構文解析器 ご注文はうさぎさんですか?
text_08.dvi
C 8 12 6 6 8 Java (3) 1 8.1 8 : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 1 8.2 : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :
25 II :30 16:00 (1),. Do not open this problem booklet until the start of the examination is announced. (2) 3.. Answer the following 3 proble
25 II 25 2 6 13:30 16:00 (1),. Do not open this problem boolet until the start of the examination is announced. (2) 3.. Answer the following 3 problems. Use the designated answer sheet for each problem.
1 シミュレーションとは何か?
Delphi P.1/16 Delphi Delphi Object Pascal Delphi Delphi Delphi (Borland) Windows Turbo Pascal Pascal Delphi Turbo Pascal Windows Pascal FORTRAN BASIC Java Algol Algol Pascal Pascal Pascal Pascal Delphi
2 I I / 61
2 I 2017.07.13 I 2 2017.07.13 1 / 61 I 2 2017.07.13 2 / 61 I 2 2017.07.13 3 / 61 7/13 2 7/20 I 7/27 II I 2 2017.07.13 4 / 61 π-computer gnuplot MobaXterm Wiki PC X11 DISPLAY I 2 2017.07.13 5 / 61 Mac 1.
JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2
JavaScript (2) 1 JavaScript 1.! 1. 2. 3. DOM 4. 2. 3. Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 (1) var a; a = 8; a = 3 + 4; a = 8 3; a = 8 * 2; a = 8 / 2; a = 8 % 3; 1 a++; ++a; (++
Condition DAQ condition condition 2 3 XML key value
Condition DAQ condition 2009 6 10 2009 7 2 2009 7 3 2010 8 3 1 2 2 condition 2 3 XML key value 3 4 4 4.1............................. 5 4.2...................... 5 5 6 6 Makefile 7 7 9 7.1 Condition.h.............................
soturon.dvi
12 Exploration Method of Various Routes with Genetic Algorithm 1010369 2001 2 5 ( Genetic Algorithm: GA ) GA 2 3 Dijkstra Dijkstra i Abstract Exploration Method of Various Routes with Genetic Algorithm
ex01.dvi
,. 0. 0.0. C () /******************************* * $Id: ex_0_0.c,v.2 2006-04-0 3:37:00+09 naito Exp $ * * 0. 0.0 *******************************/ #include int main(int argc, char **argv) { double
Microsoft PowerPoint - IntroAlgDs pptx
アルゴリズムとデータ構造入門 -14 2012 年 1 月 8 日 大学院情報学研究科知能情報学専攻 http://winnie.kuis.kyoto-u.ac.jp/~okuno/lecture/11/introalgds/ [email protected],[email protected] if mod( 学籍番号の下 3 桁,3) 0 if mod( 学籍番号の下 3 桁,3) 1 if
untitled
1 2 1 Good morning. Good afternoon. Good evening. Good night. 2 good, morning, afternoon, evening, bye, night, see, you, again 5 Hello. My name is... Nice to meet you. 10 Good morning. Good afternoon.
第三学年 総合的な学習の指導案(国際理解・英語活動)
NAT NAT NAT NAT NAT NAT All English NAT 20 One One One One One Show Time Silent Night Are You Sleeping? NAT NAT NAT NAT NAT What color do you like? ( NA ( ) Good afternoon, boys & girls. Good afternoon,
ohp03.dvi
19 3 ( ) 2019.4.20 CS 1 (comand line arguments) Unix./a.out aa bbb ccc ( ) C main void int main(int argc, char *argv[]) {... 2 (2) argc argv argc ( ) argv (C char ) ( 1) argc 4 argv NULL. / a. o u t \0
