码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode-967 Numbers With Same Consecutive Differences(连续差相同的数字)

时间:2018-12-30 17:27:41      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:stream   tor   mss   clear   tmp   lse   bre   ring   code   

 1 #define _for(i,a,b) for(int i = (a);i < (b);i ++)
 2 class Solution
 3 {
 4     public:
 5         vector<int> rnt;
 6         void dfs(int N,int K,int h,string s)
 7         {
 8             if(h==N)
 9             {
10                 stringstream ss;
11                 ss<<s;
12                 int tmp;
13                 ss>>tmp;
14                 rnt.push_back(tmp);
15                 return ;
16             }
17             if(h==0)
18             {
19                 _for(i,0,10)
20                 {
21                     s+=i+0;
22                     dfs(N,K,h+1,s);
23                     s.pop_back();
24                 }
25             }
26             else
27             {
28                 _for(i,0,10)
29                 {
30                     if(s[h-1]==0&&h==1)
31                         break;
32                     if(abs(i+0-s[h-1])==K)
33                     {
34                         s+=i+0;
35                         dfs(N,K,h+1,s);
36                         s.pop_back();
37                     }
38                 }
39             }
40         }
41         vector<int> numsSameConsecDiff(int N, int K)
42         {
43             rnt.clear();
44             string s;
45             dfs(N,K,0,s);
46             return rnt;
47         }
48 };

 

Leetcode-967 Numbers With Same Consecutive Differences(连续差相同的数字)

标签:stream   tor   mss   clear   tmp   lse   bre   ring   code   

原文地址:https://www.cnblogs.com/Asurudo/p/10199734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!