Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

พิมพ์เงื่อนไขของ Newman-Conway Sequence


Newman-Conway Sequence ใช้สำหรับสร้างลำดับจำนวนเต็มดังต่อไปนี้

1 1 2 2 3 4 4 4 5 6 7 7 8 8 8 8 9 10 11 12

สูตรที่ใช้สร้างลำดับนิวแมน-คอนเวย์สำหรับตัวเลข n คือ −

P(n) = P(P(n - 1)) + P(n - P(n - 1))
Where, p(1) =p(2) =1

อัลกอริทึม

START
Step 1 -> Input variable n(e.g. 20)
Step 2 -> start variables as i, p[n+1], p[1]=1, p[2]=1
Step 3 -> Loop For i=3 and i<=n and i++
   Set p[i] = p[p[i - 1]] + p[i - p[i - 1]]
      Print p[i]
   Step 4 -> End Loop For
STOP

ตัวอย่าง

#include<stdio.h>
int main() {
   int n = 20,i;
   int p[n + 1];
   p[1] = 1;
   p[2] = 1;
   printf("Newman-Conway Sequence is :");
   printf("%d %d ",p[1],p[2]);
   for (i = 3; i <= n; i++) {
      p[i] = p[p[i - 1]] + p[i - p[i - 1]];
      printf("%d ",p[i]);
   }
   return 0;
}

ผลลัพธ์

หากเรารันโปรแกรมด้านบน มันจะสร้างผลลัพธ์ต่อไปนี้

Newman-Conway Sequence is :1 1 2 2 3 4 4 4 5 6 7 7 8 8 8 8 9 10 11 12