- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在 c 中遇到问题,我想使用下面编写的代码来实现这种事情。输入和输出应该是这样的:
Input Freq Output Freq
1 0,1,4,2,5,3 add two first (0+1) 0,1,4,2,5,3,1
2 4,2,5,3,1 add min and last (2+1) 0,1,4,2,5,3,1,3
3 4,5,3,3 add min and last (3+3) 0,1,4,2,5,3,1,3,6
4 4,5,6 **here we add(4+5)**(minimum two)0,1,4,2,5,3,1,3,6,9
5 9,6 minimum two 0,1,4,2,5,3,1,3,6,9,15
6 15
但是条件是必须没有元素的交换,没有排序,**但是我们可以处理元素的索引进行比较,如果找到我们添加它们并放在数组最后的任何索引处的正确元素。
我正在尝试一些基本想法它在第一个 if 条件下工作正常,但在我想知道的其他两个 if 条件下写什么。请在那里帮助我。假设 data[i].freq={0,1,2,3,4,5} 和 data[i].next 指向下一个元素,就像上面示例中的第一步一样,0 指向 1,现在 1 指向到这两个获得的元素(所以这个 1 指向 1 at alst 而这个 1 at last 索引将指向下一个“1”(我们另外使用)所以下一个“1”是 4 ,所以最后一个元素“1”指向 4 并且我们保持索引指向的方式相同)。如果您不明白我的意思,请不要犹豫,问我。我想代码应该非常接近这个:
data[data_size].freq=data[0].freq+data[1].freq; // here i add the first 2 elements "0" and "1" in the example i given below.
data[data_size].flag=0; //I am using flag variable to show which elements are added or which are not added even once. If flag ="1" then that element is added if it "0" then not added even once.
data[0].flag=1;
data[1].flag=1; //these two have been added.
int count=5;
do
{
for(i=0;data[i].next!=-1;i=data[i].next)
{
if(data[data[i].next].freq>data[data_size].freq && data[data[i].next].flag==0)//Here i am setting flag=0 for those elements who not have been added yet. Because we don't have to take in account for addition those elements who are already added once.(step1 and step2 are coming in this loop)
{
data[data_size+1].freq= data[data_size].freq+ data[data[i].next].freq;
data[data_size].flag=1;//those elements which we are adding we set their flag to 1
data[data[i].next].flag=1;
data[data_size+1].flag=0;//this is the element onbtained on result will be sent to last index.With 0 flag because it is not added yet.
data[data_size].next=data[i].next;
data[i].next=data_size;
data_size++;
}
if(data[data[i].next].freq<data[data_size].freq && data[data[i].next].flag==0)
{
//some code for step4 where 6>5 (in this case we added 5+4)
data_size++;
}
if(data[data[i].next].freq==data[data_size].freq && data[data[i].next].flag==0)
{
//Some code for step3 when element are equal
data_size++;
}
}
count--;
} while(count>0)
会有不同的条件,例如(最后一个元素=右侧找到的元素,例如在第 2 步中找到的 3+3=6),找到的元素比最后一个元素更小,例如 5+4=9(参见第 4 步)
知道在其他两个 if 条件下应该做什么吗?我的数组输入必须是 {0,1,4,2,5,3}
(我的意思是数据 [i].freq)并且输出数组必须是 {0,1,4,2,5 ,3,1,3,6,9,15} (data[data_size].freq),没有任何排序,没有任何交换,只使用索引移动,只使用数组。请帮我写另外两个if条件。
最佳答案
终于我能够解决我的问题了。我使用一个队列来做到这一点,Front 和 Rear 变量指向 data[] 数组的起始索引和结束索引。如果遇到相同类型的问题,这里是任何 future 用户的等效帮助示例(请注意这里每件事都是静态的,但实现的逻辑是相同的:
#include <stdio.h>
void main() {
int max = 50;
int index = 0, Front = 0, Rear, min, min2, location, i, location2, flag[30], check = 0, j;
int data[50] = {
1, 2, 3, 4, 5, 6, 7, 8, 9, 10
};
Rear = 9;
for (i = 0; i <= Rear; i++) {
flag[i] = 0;
}
int count = Rear;
do {
if (Front == 0) {
printf("check1 \n ");
Rear++;
data[Rear] = data[Front] + data[1];
flag[Front] = 1;
flag[Rear] = 0;
flag[1] = 1;
printf("*****************dataRear: %d\n ", data[Rear]);
Front = Front + 2;
}
if (data[Front] == data[Rear] && flag[Rear] == 0 && flag[Front] == 0) {
printf("check3 \n ");
data[Rear + 1] = data[Front] + data[Rear];
printf("************dataRear[Rear+1]: %d\n ", data[Rear + 1]);
flag[Front] = 1;
flag[Rear] = 1;
flag[Rear + 1] = 0;
for (j = Front + 1; j <= Rear; j++) {
if (flag[j] == 0) {
Front = j;
break;
}
}
Rear++;
}
if (data[Front] < data[Rear] && flag[Rear] == 0 && flag[Front] == 0) {
int start = Front + 2;
min = data[Front];
for (j = Front + 1; j <= Rear; j++) {
if (flag[j] == 0) {
min2 = data[j];
location2 = j;
break;
}
}
location = Front;
for (i = start; i <= Rear; i++) {
if (data[i] < min && flag[i] == 0) {
min = data[i];
location = i;
min2 = min;
}
if (data[i] < min2 && flag[i] == 0) {
min2 = data[i];
location2 = i;
}
}
data[Rear + 1] = min2 + min;
flag[location2] = 1;
flag[location] = 1;
flag[Rear + 1] = 0;
for (j = location + 1; j <= Rear; j++) {
if (flag[j] == 0) {
Front = j;
break;
}
}
printf("*****************dataRear: %d\n ", data[Rear]);
Rear = Rear + 1;
}
count--;
} while (Front != Rear && count > 0);
for (i = 0; i < 21; i++) {
printf(" %d ", data[i]);
}
printf("\n");
}
关于c - 两个元素相加的数据结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21485398/
我目前正在尝试基于哈希表构建字典。逻辑是:有一个名为 HashTable 的结构,其中包含以下内容: HashFunc HashFunc; PrintFunc PrintEntry; CompareF
如果我有一个指向结构/对象的指针,并且该结构/对象包含另外两个指向其他对象的指针,并且我想删除“包含这两个指针的对象而不破坏它所持有的指针”——我该怎么做这样做吗? 指向对象 A 的指针(包含指向对象
像这样的代码 package main import "fmt" type Hello struct { ID int Raw string } type World []*Hell
我有一个采用以下格式的 CSV: Module, Topic, Sub-topic 它需要能够导入到具有以下格式的 MySQL 数据库中: CREATE TABLE `modules` ( `id
通常我使用类似的东西 copy((uint8_t*)&POD, (uint8_t*)(&POD + 1 ), back_inserter(rawData)); copy((uint8_t*)&PODV
错误 : 联合只能在具有兼容列类型的表上执行。 结构(层:字符串,skyward_number:字符串,skyward_points:字符串)<> 结构(skyward_number:字符串,层:字符
我有一个指向结构的指针数组,我正在尝试使用它们进行 while 循环。我对如何准确初始化它并不完全有信心,但我一直这样做: Entry *newEntry = malloc(sizeof(Entry)
我正在学习 C,我的问题可能很愚蠢,但我很困惑。在这样的函数中: int afunction(somevariables) { if (someconditions)
我现在正在做一项编程作业,我并没有真正完全掌握链接,因为我们还没有涉及它。但是我觉得我需要它来做我想做的事情,因为数组还不够 我创建了一个结构,如下 struct node { float coef;
给定以下代码片段: #include #include #define MAX_SIZE 15 typedef struct{ int touchdowns; int intercepti
struct contact list[3]; int checknullarray() { for(int x=0;x<10;x++) { if(strlen(con
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Empty “for” loop in Facebook ajax what does AJAX call
我刚刚在反射器中浏览了一个文件,并在结构构造函数中看到了这个: this = new Binder.SyntaxNodeOrToken(); 我以前从未见过该术语。有人能解释一下这个赋值在 C# 中的
我经常使用字符串常量,例如: DICT_KEY1 = 'DICT_KEY1' DICT_KEY2 = 'DICT_KEY2' ... 很多时候我不介意实际的文字是什么,只要它们是独一无二的并且对人类读
我是 C 的新手,我不明白为什么下面的代码不起作用: typedef struct{ uint8_t a; uint8_t* b; } test_struct; test_struct
您能否制作一个行为类似于内置类之一的结构,您可以在其中直接分配值而无需调用属性? 前任: RoundedDouble count; count = 5; 而不是使用 RoundedDouble cou
这是我的代码: #include typedef struct { const char *description; float value; int age; } swag
在创建嵌套列表时,我认为 R 具有对列表元素有用的命名结构。我有一个列表列表,并希望应用包含在任何列表中的每个向量的函数。 lapply这样做但随后剥离了列表的命名结构。我该怎么办 lapply嵌套列
我正在做一个用于学习目的的个人组织者,我从来没有使用过 XML,所以我不确定我的解决方案是否是最好的。这是我附带的 XML 文件的基本结构:
我是新来的 nosql概念,所以当我开始学习时 PouchDB ,我找到了这个转换表。我的困惑是,如何PouchDB如果可以说我有多个表,是否意味着我需要创建多个数据库?因为根据我在 pouchdb
我是一名优秀的程序员,十分优秀!