Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/MrGPanPan/coding2017
Browse files Browse the repository at this point in the history
  • Loading branch information
龚启盼 committed Mar 27, 2017
2 parents 84029fa + 1b81395 commit 6d16b97
Show file tree
Hide file tree
Showing 77 changed files with 1,903 additions and 397 deletions.
20 changes: 0 additions & 20 deletions group11/1178243325/DataStructure/build.gradle

This file was deleted.

1 change: 0 additions & 1 deletion group11/1178243325/DataStructure/readme.md

This file was deleted.

56 changes: 0 additions & 56 deletions group11/1178243325/DataStructure/src/main/java/com/Main.java

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

11 changes: 0 additions & 11 deletions group11/1178243325/DataStructure/src/main/resources/struts.xml

This file was deleted.

11 changes: 0 additions & 11 deletions group11/1178243325/DataStructure/struts.xml

This file was deleted.

9 changes: 9 additions & 0 deletions group11/1178243325/week01/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apply plugin: 'java'

repositories {
mavenCentral();
}

dependencies {
testCompile("junit:junit:4.12")
}
16 changes: 16 additions & 0 deletions group11/1178243325/week01/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
## 讲课内容:
- 17-2-15: 社群kickoff
- 17-2-19:讲解Java自测题和基本数据结构
- 17-2-22:计算机组成原理和计算机编程语言
- 17-2-26:程序的机器级表示

## 第一周作业(2-15 至 2-26)
- 实现各种基本数据结构(ArrayList, Stack, LinkedList, Queue, Tree, Iterator)
- 写一篇介绍CPU,内存,硬盘,指令以及他们之间的关系

## 完成情况:
- 基本数据结构已完成
- [文章地址](http://www.jianshu.com/p/8d8379aa1281)

## 我的收获:
- [漫谈计算机组成原理和编程语言](http://www.jianshu.com/p/07df48adf338)
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package com.sprint.basic;

public interface Iterator {
public boolean hasNext();
public Object next();
}
Loading

0 comments on commit 6d16b97

Please sign in to comment.