2018年6月16日土曜日

開発環境

Head First C ―頭とからだで覚えるCの基本 (David Griffiths (著)、Dawn Griffiths (著)、中田 秀基 (監修)、木下 哲也 (翻訳)、オライリージャパン)の6章(データ構造と動的メモリ - 架け橋を築く)、自分で考えてみよう(p. 289)を取り組んでみる。

自分で考えてみよう(p. 289)

Makefile

CC = cc

all: sample run

sample: sample.c
 $(CC) sample.c -o sample

run: sample
 ./sample

コード

#include <stdio.h>
#include <stdlib.h> // malloc
#include <string.h> // strdup

typedef struct Island {
  char *name;
  char *opens;
  char *closes;
  struct Island *next;
} Island;

Island *Island_new(char *name) {
  Island *i = malloc(sizeof(Island));

  i->name = strdup(name);
  i->opens = "09:00";
  i->closes = "17:00";
  i->next = NULL;

  return i;
}

void Island_display(Island *start) {
  Island *i = start;

  for (; i != NULL; i = i->next) {
    printf("名前: %s 営業時間: %s-%s\n", i->name, i->opens, i->closes);
  }
}

void Island_release(Island *start) {
  Island *next = NULL;
  
  for (Island *i = start; i != NULL; i = next) {
    next = i->next;
    free(i->name);
    free(i);
  }
}

int main() {
  Island *start = NULL;
  Island *next = NULL;
  char name[80];

  for (Island *i = NULL; fgets(name, 80, stdin) != NULL; i = next) {
    next = Island_new(name);
    if (start == NULL) {
      start = next;
    }
    if (i != NULL) {
      i->next = next;
    }
  }
  Island_display(start);
  Island_release(start);
}

入出力結果(Terminal)

$ make
cc sample.c -o sample
./sample
$ ./sample < islands.txt 
名前: アミティ
 営業時間: 09:00-17:00
名前: クラッギー
 営業時間: 09:00-17:00
名前: イスラヌブラル
 営業時間: 09:00-17:00
名前: シャッター
 営業時間: 09:00-17:00
$ 

0 コメント:

コメントを投稿