<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[RSS Feed]]></title><description><![CDATA[RSS Feed]]></description><link>http://direct.ecency.com</link><image><url>http://direct.ecency.com/logo512.png</url><title>RSS Feed</title><link>http://direct.ecency.com</link></image><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Apr 2026 11:56:42 GMT</lastBuildDate><atom:link href="http://direct.ecency.com/created/arigolrthy/rss.xml" rel="self" type="application/rss+xml"/><item><title><![CDATA[为面试做准备：冒泡算法]]></title><description><![CDATA[冒泡排序是排序算法中较为简单的一种，英文称为Bubble Sort。它遍历所有的数据，每次对相邻元素进行两两比较，如果顺序和预先规定的顺序不一致，则进行位置交换；这样一次遍历会将最大或最小的数据上浮到顶端，之后再重复同样的操作，直到所有的数据有序。 第一种：直接全部遍历 #include <stdio.h> int main() { int data[10]={1,3,5,7,9,2,4,6,8,0};]]></description><link>http://direct.ecency.com/bubble/@franklei/pmxkd</link><guid isPermaLink="true">http://direct.ecency.com/bubble/@franklei/pmxkd</guid><category><![CDATA[bubble]]></category><dc:creator><![CDATA[franklei]]></dc:creator><pubDate>Tue, 19 Mar 2019 03:40:24 GMT</pubDate></item></channel></rss>