<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>kankinkon</author_name>
  <author_url>https://blog.hatena.ne.jp/kankinkon/</author_url>
  <blog_title>Afro-Blue</blog_title>
  <blog_url>https://kankinkon.hatenadiary.org/</blog_url>
  <categories>
    <anon>アルゴリズムとデータ構造</anon>
  </categories>
  <description>リストの最後は循環リスト その名のとおり循環します。最後の要素の次が先頭要素になります。 このリストも必ず空き要素headが一つ存在する。 #include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; typedef struct CELL { struct CELL *next; int value; } Cell; Cell *head; /* 循環リストを初期化する。head要素を作成しnextポインタに自分を指定する。 */ void init() { if (head == NULL) { head = malloc(sizeof(Cell)); head-&gt;next…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fkankinkon.hatenadiary.org%2Fentry%2F20111210%2F1323503950&quot; title=&quot;循環リスト - Afro-Blue&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>2011-12-10 16:59:10</published>
  <title>循環リスト</title>
  <type>rich</type>
  <url>https://kankinkon.hatenadiary.org/entry/20111210/1323503950</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
