2019年3月29日

摘要: 1 package edu.yuliang.Data_Structure_Basics; 2 3 import org.omg.PortableInterceptor.SYSTEM_EXCEPTION; 4 /* 5 给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效。 6 7 有效字符串需满足: 8 9 左括号必须用相同类型的右... 阅读全文

posted @ 2019-03-29 23:09 ANONY_MOUSER 阅读(162) 评论(0) 推荐(0) 编辑

摘要: 1 // 2 // Created by langzi on 19-3-28. 3 // 4 5 #include 6 using namespace std; 7 8 typedef int DataType; 9 #define Node ElemType 10 #define ERROR NULL; 11 12 13 class Nod... 阅读全文

posted @ 2019-03-29 23:06 ANONY_MOUSER 阅读(276) 评论(0) 推荐(0) 编辑

摘要: 1 package edu.del; 2 3 import java.util.ArrayList; 4 import java.util.Collections; 5 import java.util.List; 6 import java.util.Scanner; 7 8 class Student implements Comparable{ 9 Strin... 阅读全文

posted @ 2019-03-29 22:44 ANONY_MOUSER 阅读(870) 评论(0) 推荐(0) 编辑

摘要: 1 public class sort { 2 public static void main(String[] args) { 3 int[] arr = {2, 5, 3, 4, 8, 5, 1}; 4 //sort_insert(arr); 5 //sort_bin(arr); 6 //sort... 阅读全文

posted @ 2019-03-29 21:27 ANONY_MOUSER 阅读(120) 评论(0) 推荐(0) 编辑