Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf7f9ca4

Browse files
committed
要有梦想,即使遥远。
1 parent7a1e662 commitf7f9ca4

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

‎_coverpage.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
12
<h1align="center">Java后端面试核心知识体系</h1>
2-
<h2>祝您早日收获心仪offer😀</h2>
3+
<h2>要有梦想,即使遥远。😀</h2>
34

45
![QQ群](https://img.shields.io/badge/QQ%E7%BE%A4-660108379-yellowgreen.svg)
56
![微信公众号](https://img.shields.io/badge/微信公众号-码上Java-yellowgreen.svg)

‎docs/Java工程师必须掌握的知识.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Java工程师必须掌握的知识呢
1+
#Java工程师必须掌握的知识
22

33
##1. Java 基础中的核心内容
44

‎docs/database/SQL经典笔试题目.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,24 @@ having count(sc.cid ) < 3
237237
>查询至少有一门课与学号为“01”的同学所学相同的同学的学号和姓名;
238238
239239
```sql
240-
240+
select distinctsc.sid,sname
241+
from sc
242+
join studentas s
243+
onsc.sid=s.sid
244+
where cidin
245+
(select distinct cidfrom scwhere sid='01')
241246
```
242247

243248
###3.2 第十二道
244249

245250
>查询和"01"号的同学学习的课程完全相同的其他同学的学号和姓名;
246251
252+
```sql
253+
254+
```
255+
256+
257+
247258
###3.3 第十三道
248259

249260
###3.4 第十四道

‎src/com/imood/msjava/Test.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ public class Test {
1616
*/
1717
publicintkthToLast(ListNodehead,intN) {
1818
//双指针法
19+
20+
inta;
1921
ListNodepre=head;
2022
ListNodelow=head;
2123
if(head.next==null){

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp