<script type="text/javascript"> window.onload = function(){ var app = new Vue({ el:"#app", data:{ upp:0, low:0 }, watch:{ upp:function(val){ this.upp ...
分类:
其他好文 时间:
2018-12-10 21:00:35
阅读次数:
364
[例句]He deprecated the low quality of entrants to the profession 他对该行业中新人的低素质予以了批评。 ...
分类:
其他好文 时间:
2018-12-09 13:56:15
阅读次数:
236
快速排序: #include<stdio.h> int Array_Sort[] = {3,1,2,0,4,6,5,9,7,8}; int FindPos(int *Array,int low,int high) { int val = Array[low]; while(low<high) { w ...
分类:
编程语言 时间:
2018-12-08 19:16:53
阅读次数:
197
#include <stdio.h>#include <stdlib.h> #define ELEMENT_CNT 10 void merge(int *array,int low,int mid,int high){ int i,k; int left_low = low; int left_hi ...
分类:
编程语言 时间:
2018-12-08 19:15:20
阅读次数:
163
在java开发中经常会读取配置文件,如果把文件路径写死,就太LOW了,也不符合编码规范。 在网上找了一些资料后,发现有两种方法:xxx.class.getResource("") 和 xxx.class.getClassLoader().getResource("") 1.先看一个例子: 其实,cl ...
分类:
编程语言 时间:
2018-12-07 14:48:21
阅读次数:
248
#include //向下调整 void HeapAdjust(int A[], int low, int high){ int i, temp = A[low]; for(i = low * 2; i 0; i--) HeapAdjust(A, i, n); //将最大值放至数组末端 for(i ... ...
分类:
编程语言 时间:
2018-12-04 01:02:10
阅读次数:
192
#includeint Partition(int A[], int low, int high){ int pivot; pivot = A[low]; while(low = pivot)// 1.相等不替换 2.不要遗漏low < high的判断 high--; A[low] = A[high... ...
分类:
其他好文 时间:
2018-12-03 15:37:56
阅读次数:
194
本次的作品我们存在很多的不足 不足: 软件太low了,还是黑底篮字的那种,而且 不够新颖 改进:优化软件,不再是那种黑底篮字的那种,改的像如今的app那种 设计一款新颖的软件,市场上少有的那种软件 丰富软件内容,让它有竞争力 ...
分类:
其他好文 时间:
2018-12-02 22:48:27
阅读次数:
134