k-Primes(C语言CodeWars)

27 篇文章 2 订阅

解题思路:

(1)首先求出因数的个数,并同时插入链表

(2)接下来,用开始的函数分别求出1,3,7的链表

(3)三层循环,判断个数,有点百钱买鸡的味道

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

// In the preloaded section are some functions that can help.
// They can be used as a small library.
// There is no file to include, only the templates below.

struct node {
    int data;
    struct node *next;
};
struct list {
    size_t sz;
    struct node *head;
};

struct list* createList();

// push data at the head of the list
void insertFirst(struct list* l, int data);

struct list* reverse(struct list* l);

void listFree(struct list* l);

// functions to write
struct list* kPrimes(int k, int start, int nd) {
    // your code
    struct list* l = createList();
    for(int i=start;i<=nd;i++) {
      if(kprime(i)==k) insertFirst(l, i);
    }
    struct list* lr = reverse(l);
    //listFree(l);
    return lr;
}
int puzzle(int s) {
    // your code
    struct list* l1 = kPrimes(1, 2, s);
    struct list* l3 = kPrimes(3, 2, s);
    struct list* l7 = kPrimes(7, 2, s);
    struct node *p=l1->head,*q=l3->head,*h=l7->head;
    int sum = 0,count=0;
    while(p) {
    sum = p->data;
    q = l3->head;
    while(q) {
      sum = p->data+q->data;
      h = l7->head;
      while(h) {
        if(sum+h->data<s) h = h->next;
        else if(sum+h->data==s) {
          count++;
          break;
        } else break;
      }
      q = q->next;
    }
    p = p->next;
  }
  return count;
}

int kprime(int n) {
  if (n==1) return 1;
  int i=2,count=0;
  while(n>1 && i<=n) {
    if(n%i==0) n/=i,count++;
    else i++;
  }
  return count;
}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值