<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>sachiel2020</author_name>
  <author_url>https://blog.hatena.ne.jp/sachiel2020/</author_url>
  <blog_title>大学生PGの高速計算機Blog</blog_title>
  <blog_url>https://sachiel2020.hatenadiary.org/</blog_url>
  <categories>
    <anon>C言語</anon>
  </categories>
  <description>C言語を取得するためにひたすらAlgorithmプログラムを書いているので少し紹介します。 まずキューとはFIFO(first in first out)のデータ構造を持ったものです。 いわゆる最初に入ったデータが最初にでるてこと。C言語でのキューの表現にはリストを用いたものと配列を用いたものがあります。 簡単なサンプル↓ (配列表現) #define max 100 static int queue[max+1],head,tail; void init(){ tail = 0; head = 0; } void put(int v){ queue[tail++] = v; if(tail …</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fsachiel2020.hatenadiary.org%2Fentry%2F20080531%2F1212766657&quot; title=&quot;C言語のキュー - 大学生PGの高速計算機Blog&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2008-05-31 00:37:37</published>
  <title>C言語のキュー</title>
  <type>rich</type>
  <url>https://sachiel2020.hatenadiary.org/entry/20080531/1212766657</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
