算法编程练习
Nickee-Lin
学习如同逆水行舟,不进则退
展开
-
一行代码实现1,2,3,,,n的和
Using the C++ language, have the function SimpleAdding(num) add up all the numbers from 1 to num. For example: if the input is 4 then your program should return 10 because 1 + 2 + 3 + 4 = 10. For the ...原创 2018-01-26 17:41:31 · 2931 阅读 · 0 评论 -
倒排高级算法
这算法贼六。。。 #include using namespace std; string FirstReverse(string str) { // code goes here for(int i=0,j=str.length()-1;istr.length()/2;i++,j--) { str[i]^=str[j]^=str[i]^=str[j];原创 2017-12-04 20:53:01 · 564 阅读 · 0 评论 -
一行代码实现阶乘
代码来自某网站上的大神~ https://coderbyte.com/results/hyuil:First%20Factorial:Cpp #include using namespace std; long FirstFactorial(short const num) { // code goes here return num 1 ? 1 : num*Firs原创 2017-12-05 16:36:51 · 1273 阅读 · 0 评论 -
找出最长的一个单词
还是那位大神~ https://coderbyte.com/results/hyuil:Longest%20Word:Cpp #include #include #include using namespace std; string LongestWord(string sen) { // code goes here string sen2 = ""; f原创 2017-12-05 19:31:20 · 3299 阅读 · 0 评论