Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
srayuws committed Oct 3, 2013
1 parent 4efde6b commit 89fbace
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions C/chapStackAndQueue.tex
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,9 @@ \subsection{队列的C语言实现}
}

/**
* @brief 获取队首元素.
* @brief 获取队尾元素.
* @param[in] q 队列对象的指针
* @return 队首元素
* @return 队尾元素
*/
queue_elem_t queue_back(const queue_t *q) {
return q->elems[q->rear - 1];
Expand Down
2 changes: 1 addition & 1 deletion C/chapString.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ \chapter{字符串}


\section{字符串API} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
面试中经常会出现,现场编写 \fn{strcpy, strlen, strstr, atoi} 等库函数的题目。这类题目看起来简单,实则难度很大,区分都很高,很容易考察出你的编程功底,是面试官的最爱。
面试中经常会出现,现场编写 \fn{strcpy, strlen, strstr, atoi} 等库函数的题目。这类题目看起来简单,实则难度很大,区分度很高,很容易考察出你的编程功底,是面试官的最爱。


\subsection{strlen}
Expand Down

0 comments on commit 89fbace

Please sign in to comment.