
数据结构
菜还膨胀
此人很菜,什么都不敢写
展开
-
七大排序Java实现
1.冒泡排序public static void sort(int []nums) { for(int i=0;i<nums.length-1;i++) { for(int j=0;j<nums.length-1-i;j++) { if(nums[j]>n...原创 2020-03-24 15:51:13 · 208 阅读 · 0 评论 -
用栈实现简易计算器c++
详情见注释//easy caculator////Created by zzx on 2018.10.10#include <iostream>using namespace std;#include <string>#include <stdlib.h>#define MaxSize 100char precede(char a, ch...原创 2018-10-27 15:44:29 · 2540 阅读 · 6 评论