<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>hiro211</author_name>
  <author_url>https://blog.hatena.ne.jp/hiro211/</author_url>
  <blog_title>Thought about system and engineering</blog_title>
  <blog_url>https://hiroi.hateblo.jp/</blog_url>
  <categories>
    <anon>Algorithms</anon>
    <anon>C++</anon>
  </categories>
  <description>バブルソートのコードをC++で実装したものを以下に示す。 #include &lt;utility&gt; void bubble_sort(int target[], int len) { bool goon = true; while (goon) { goon = false; for (int i = len - 1; i &gt; 0; i--) { if (target[i - 1] &gt; target[i]) { std::swap(target[i - 1], target[i]); goon = true; } } } }</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fhiroi.hateblo.jp%2Fentry%2F2020%2F04%2F05%2F103222&quot; title=&quot;C++バブルソートのコード - Thought about system and engineering&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>2020-04-05 10:32:22</published>
  <title>C++バブルソートのコード</title>
  <type>rich</type>
  <url>https://hiroi.hateblo.jp/entry/2020/04/05/103222</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
