摘要: #include #include using namespace std; typedef struct node{ char ch; node* lc,*rc; }node,*Node; string s; Node build(Node p,int& k){ if(s[k]'#'){ k++; 阅读全文
posted @ 2021-10-17 19:21 Lindseyyip 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 1.数组排序及元素查找 import java.util.Arrays; public class MainClass { public static void main(String args[]) throws Exception { int array[] = { 2, 5, -2, 6, - 阅读全文
posted @ 2021-10-15 20:05 Lindseyyip 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1.字符串的分割 package myproject4; import java.util.; import java.lang.; //1. split(string) 方法通过指定分隔符将字符串分割为数组 public class a { public static void fenge() { 阅读全文
posted @ 2021-10-14 20:30 Lindseyyip 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1.public class StringCompareEmp{ public static void main(String args[]){ String str = "Hello World"; String anotherString = "hello world"; Object objS 阅读全文
posted @ 2021-10-13 23:37 Lindseyyip 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 今天运行了上课老师给的代码,有关继承的那部分。 阅读全文
posted @ 2021-10-09 18:25 Lindseyyip 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; #define MAXLEN 255 typedef struct { char ch[MAXLEN+1]; int length; }SString; //next void get_next(SString T,i 阅读全文
posted @ 2021-10-07 23:33 Lindseyyip 阅读(29) 评论(0) 推荐(0) 编辑
摘要: switch(expression){ case value : //语句 break; //可选 case value : //语句 break; //可选 //你可以有任意数量的case语句 default : //可选 //语句 } public class Test { public sta 阅读全文
posted @ 2021-10-06 23:03 Lindseyyip 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1.public class QiangZhiZhuanHuan{ public static void main(String[] args){ int i1 = 123; byte b = (byte)i1;//强制类型转换为byte System.out.println("int强制类型转换为 阅读全文
posted @ 2021-10-04 22:24 Lindseyyip 阅读(24) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <queue> #include <cstring> #define MAXSIZE 100 using namespace std; int main() { queue <char>q; char a[MAXSIZE]; scanf("%s 阅读全文
posted @ 2021-10-04 19:21 Lindseyyip 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 通过开学的一个月,利用课余空闲时间,我阅读了周爱明老师的《大道至简》。这本软件工程方面的著作让我深刻地认识到了编程思想。 本书被誉为“激荡新思的佳作”,他所传达的不仅仅是编程的语言,而是思想。此书一共十一个章节,其中每个章节都有几个小节,而每一个小节都有一个生动且丰富的标题直指中心,框架结构比较明显 阅读全文
posted @ 2021-09-30 15:38 Lindseyyip 阅读(77) 评论(0) 推荐(0) 编辑