目录
时间复杂度:算法中基本操作重复执行的次数是问题规模n的某个函数,其时间量度记作T(n)=O(f(n)),称作算法的渐近时间复杂度,简称时间复杂度。一般常用最深层循环内的语句中的原操作的执行频度(重复执行的次数)来表示。
空间复杂度:对一个算法在运行过程中临时占用存储空间大小的量度。
//以Person类为例
Person current = first;
for(int i = 0; i < n(指定整数);i++){
current = current.next;//遍历列表
}
//以Student类为例
public static void InsertNode(Student head,Student node1,Student node3){
Student point = head;
while((point.number != node1.number) && point != null){
point = point.next;
}
if (point.number == node1.number){
//此处的两句绝对不能够换位置,不然可能会造成NullPointerException
node3.next = point.next;
point.next = node3;
}
}
//Student类为例
public static void DeleteNode(Student head,Student node){
Student pre = head, current = head;
while (current != null){
if (current.number != node.number){
pre = current;
current = current.next;
}
}
pre.next = current.next;//关键步骤
}
public void enqueue(T element)
{
LinearNode<T> node = new LinearNode<T>(element);
if (isEmpty()) {
head = node;
}
else {
tail.setNext(node);
}
tail = node;
count++;
}
public T dequeue() throws EmptyCollectionException
{
if (isEmpty()) {
throw new EmptyCollectionException("queue");
}
T result = head.getElement();
head = head.getNext();
count--;
if (isEmpty()) {
tail = null;
}
return result;
}
public void enqueue(T element) {
if (size() == queue.length) {
expandCapacity();
}
queue[rear] = element;
rear = (rear + 1) % queue.length;//关键代码:用于正确更新rear的值
count++;
}
public T dequeue() throws EmptyCollectionException {
if (isEmpty()) {
throw new EmptyCollectionException("queue");
}
T result = queue[front];
queue[rear] = null;
front = (front + 1) % queue.length;
count--;
return result;
}
问题1:Android实现过程中的事件和监听器代码
class MyListener implements View.OnClickListener{
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this,"you have clicked Button2",Toast.LENGTH_SHORT).show();
}
}
bt1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this,"you have clicked Button1",Toast.LENGTH_SHORT).show();
}
});
// 方法三,注意需要public方法
public void onButtonClick (View view){
Toast.makeText(MainActivity.this,"you have clicked Button3",Toast.LENGTH_SHORT).show();
}
}
无考试
代码行数(新增/累积) | 博客量(新增/累积) | 学习时间(新增/累积) | 重要成长 | |
---|---|---|---|---|
目标 | 10000行 | 30篇 | 400小时 | |
第一周 | 254/254 | 2/2 | 21/21 | 开始编写简单的程序 |
第二周 | 132/386 | 1/3 | 26/47 | 学会使用Scanner类 |
第三周 | 632/1018 | 2/5 | 21/68 | 学会使用部分常用类 |
第四周 | 663/1681 | 2/7 | 27/95 | junit测试和编写类 |
第五周 | 1407/3088 | 2/9 | 30/125 | 继承以及继承相关类与关键词 |
第六周 | 2390/5478 | 1/10 | 25/150 | 面向对象三大属性&异常 |
第七周 | 1061/6539 | 2/12 | 25/175 | 算法,栈,队列,链表 |
计划学习时间:25小时
实际学习时间:25小时
20182303 2019-2020-1 《数据结构与面向对象程序设计》第七周学习总结
原文:https://www.cnblogs.com/zdyyy/p/11787804.html