最新 最热

轻松学习C语言编程之函数知识详解

函数是一组一起执行任务的语句。每个C程序至少有一个函数,即main,所有最简单的程序都可以定义其他函数。您可以将代码划分为单独的函数。如何在不同的函数之间划分代码取决于你,但从逻辑上讲,划分是这样的,即每个函数执行...

2018-08-07
1

将字符转换成带有圆圈的字符

将字符转换成带有圆圈的字符private string Convert(int m)         {             switch (m)             {                 case 1: return "①";         ...

2018-08-03
1

Leetcode打卡 | No.009 回文数

欢迎和小詹一起定期刷leetcode,每周一和周五更新一题,每一题都吃透,欢迎一题多解,寻找最优解!这个记录帖哪怕只有一个读者,小詹也会坚持刷下去的!...

2018-07-24
1

蒂花之秀,他们究竟对古诗词做了什么?

晚上在网上无意间发现了某位不知名程序员前辈翻译的一句古诗词,觉得挺有意思,尤其是想象古诗词描绘场景的情况下,读出翻译,就越有意思。抽刀断水水更流,举杯消愁愁更愁。cutWater( getKnif...

2018-07-03
1

【HFT系列】高频价格动态策略

从2018年6月4日起,公众号每发布一篇文章,就为大家分享一张Octodex的创意图。# 003今天分享一篇基于PPT的高频交易研究。解读了部分内容,其余部分大家可以在【阅读原文】下载代码自行研究...

2018-06-22
2

leetcode 33 Search in Rotated Sorted Array

public class Solution { public int search(int[] A, int target) { int l = 0; int r = A.length - 1; while (l <= r) { ...

2018-06-04
1

leetcode 9 Palindrome Number

class Solution {public: bool isPalindrome(int x) { //negative number if(x < 0) return false; int len = 1; w...

2018-06-04
1

hdu1094

#include<iostream>using namespace std;int main(){ int n; while(cin>>n){ int sum=0; int i,m; for(i=1;i<=n;++i){ cin...

2018-06-04
1

hdu1087

#include <stdio.h> #include <string.h> int main() { int d[1001], ans[1001]; int n, i, j, flag, rst; while(~scanf("%d", &n) && n) { ...

2018-06-04
1

hdu1088

#include <stdio.h> #include <string.h> int main() { char s[10000]; int len; int cnt = 0; while(~scanf("%s",s)) { ...

2018-06-04
1