码迷,mamicode.com
首页 >  
搜索关键字:low poly    ( 2316个结果
图解算法系列之冒泡排序(Low版)
图解算法系列之冒泡排序(Low版)
分类:编程语言   时间:2018-12-11 17:29:31    阅读次数:161
vue--监听属性完成大小写字母间的转换
<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
图解算法系列之插入排序(Low版)
图解算法系列之插入排序(Low版)
分类:编程语言   时间:2018-12-09 18:52:09    阅读次数:201
单词汇总
[例句]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读取配置文件的推荐方法getResource、getResourceAsStream
在java开发中经常会读取配置文件,如果把文件路径写死,就太LOW了,也不符合编码规范。 在网上找了一些资料后,发现有两种方法:xxx.class.getResource("") 和 xxx.class.getClassLoader().getResource("") 1.先看一个例子: 其实,cl ...
分类:编程语言   时间:2018-12-07 14:48:21    阅读次数:248
堆排序_C实现
#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
快排_C实现
#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
2316条   上一页 1 ... 47 48 49 50 51 ... 232 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!