This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <search.h> | |
#include <ctype.h> | |
#define cons(X,Y) new_list((void *) X, Y) | |
/* Definition of data structures */ | |
typedef struct list{ | |
void *data; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <search.h> | |
#define cons(X,Y) new_list((void *) X, Y) | |
/* Definition of data structures */ | |
typedef struct list{ | |
void *data; | |
struct list *next; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang racket/base | |
;; Y combinator / Normal Order | |
(define (Yₙ f)(U (comp f U))) | |
;; Y combinator / Applicative Order | |
(define (Yₐ f)(U (comp/eta f U))) | |
;; Polyvaradic Y Combinator / Normal Order | |
(define (Yₙ* . f*) (U (mcomp f* U))) | |
;; Polyvaradic Y Combinator / Applicative Order | |
(define (Yₐ* . f*) (U (mcomp/eta f* U))) |