`
fyc92
  • 浏览: 1939 次
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
public static void quick_sort(int[] a, int begin, int end){ int start = 0; if (begin < end) { start = a[begin]; int low = begin; int high = end; while(low < high){ while(low < high && a[high] > start){ high --; } a[low] = a[high]; ...
public static void main(String[] args) { // TODO Auto-generated method stub int a[] = {2,5,8,12,21,30,44,55,63,63,65}; int length = a.length; int times = 0; boolean isChange = false; for (int i = length - 1; i > 0; i--) { for (int j = 0; j < i; j++) { if (a[j] > a ...
import org.jfree.chart.JFreeChart; import org.jfree.chart.renderer.category.BarRenderer; import net.sf.jasperreports.engine.JRChart; import net.sf.jasperreports.engine.JRChartCustomizer;    public class BarChartCustomizer implements JRChartCustomizer { public void customize(JFreeChart chart, JRCh ...
Global site tag (gtag.js) - Google Analytics