- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
无法实现排序功能......
////ARRAY.h FILE
////////////////////////
#include <iostream>
#include <string>
using namespace std;
class ARRAY
{
public:
ARRAY(); //Default constructor
ARRAY(int); //Create Array
ARRAY(const ARRAY &);
~ARRAY(){cout << "Destructor Called in\n"; delete [] DB;}
ARRAY & operator+(const string &);
ARRAY & operator=(ARRAY &);
friend ostream & operator<<(ostream &, ARRAY &);
void Size_Times_Two();
void Remove(const string &);
int Search(const string &);
void ReadFile(const string &);
void Sort(const string&);
bool Is_Full(){return count == capacity;}
bool Is_Empty(){return count == 0;}
private:
int count;
int capacity;
string *DB;
};
///////////////////////
//array.cpp FILE/////////////////////
#include <string>
#include "ARRAY.h"
#include <iostream>
#include <fstream>
using namespace std;
ARRAY::ARRAY()
{
count = 0;
capacity = 15;
DB = new string[capacity];
//Read in from file array_strings.txt
ifstream in("array_strings.txt");
while (!in.eof())
{
if (Is_Full())
{
Size_Times_Two();
}
in>>DB[count];
count++;
}
}
//ARRAY
ARRAY::ARRAY(int size)
{
count = 0;
capacity = size;
DB = new string[capacity];
}
//Fill Array
ostream & operator<<(ostream & out, ARRAY & myArray)
{
for(int i=0; i<myArray.count; i++)
{
out<<myArray.DB[i]<<endl;
}
return out;
}
///
//Array Initialization Function
ARRAY::ARRAY(const ARRAY & myArray)
{
count = myArray.count;
capacity = myArray.capacity;
DB = new string[capacity];
for (int i=0; i<count; i++)
{
DB[i] = myArray.DB[i];
}
}
//Overload OPERATOR+
ARRAY & ARRAY::operator+(const string & word)
{
if (Is_Full())
{
Size_Times_Two();
}
DB[count]=word;
count++;
return *this;
}
//Overload OPERATOR=
ARRAY & ARRAY::operator=(ARRAY & myArray)
{
if (this != &myArray)
{
delete []DB;
count = myArray.count;
capacity =myArray.capacity;
DB = new string[capacity];
for (int i=0; i<count; i++)
{
DB[i] =myArray.DB[i];
}
}
return *this;
}
//SIZE TIMES TWO
// Increase size of ARRAY Times two
void ARRAY::Size_Times_Two()
{
capacity *=2;
string *temp = new string [capacity];
for(int i=0; i<count; i++)
{
temp[i] = DB[i];
}
delete [] DB;
DB = temp;
}
//SEARCH Function
int ARRAY::Search(const string & word)
{
for (int i=0; i<<count; i++)
{
if (DB[i] == word)
return i;
}
return -1;
}
//Remove Function
void ARRAY::Remove(const string & word)
{
int loc = Search(word);
if (loc == -1)
{
cout << "ERROR!!!: WORD NOT FOUND\n";
}
else {
for (int i=loc;i<count-1; i++) {
DB[i] = DB[i+1];
}
}
}
//ReadFile Function
void ARRAY::ReadFile(const string & filename)
{
ifstream in2(filename.c_str());
string word;
if (!in2.fail())
{
while (!in2.eof())
{
getline(in2, word);
*this + word;
}
in2.close();
}
else {
cout << "File did not open\n";
}
}
//Bubble Sort Funtcion
void ARRAY::Sort(const string)
{
bool swapped = true;
int j = 0;
while (swapped)
{
swapped =false;
j++;
}
for (int i=0; i<count -1; i++)
{
for (int j=0; j<DB[i].length(); j++) {
}
}
return 0;
}
请帮忙编写代码,我在实现排序功能时遇到困难对来自 ARRAY.h 文件的调用进行排序,我不知道要传递什么参数,也不知道如何进行排序,因为自从我沉迷于离散数学以来已经有一段时间了
我已经实现了 BubbleSort 算法的代码,但它返回了一个奇怪的错误,您能告诉我问题是什么吗? public class BubbleSort { public static int[]
这是我对冒泡排序算法的实现。 import java.util.Arrays; public class BubbleSort { public static void main(Stri
我尝试使用 BubbleSort 按卡片的值对卡片进行排序,但在使用相同的卡片或具有相似值的卡片时遇到了一些问题。 import java.util.HashMap; public class Kar
我的冒泡排序代码只交换第一个数组项。所有其他项目都保留为 0。我认为我的嵌套循环是错误的,或者我还没有能够正确诊断它。所以这是我的代码。 public void swap(int i, int
这段代码: #include #define SIZE 10 int main(){ int a[SIZE]={2,6,4,8,10,12,89,68,45,37}; int pas
我正在尝试根据指针指向的字符串对指针数组进行排序。我的 bubblesort 实现似乎忽略了我传递给它的最后一个元素。 #include #include #include void swap(
我尝试用 C++ 编写基本的冒泡排序,但现在我被卡住了。任何想法为什么这可能行不通?我想这对更有经验的人来说是显而易见的,但对我来说不是。 liczba_liczb 是数组单元格的个数,niePoso
为什么选择冒泡排序而不是其他排序算法? 最佳答案 你不会。 杜克大学的 Owen Astrachan 曾写过一篇追溯冒泡排序历史的研究论文 (Bubble Sort: An Archaeologica
有一个类似于此的冒泡排序例程。我需要通过在数组排序时或数组已经排序时停止循环来提高效率。 function sortNumbers(listbox) { var x, y, holder; /
这是一个非常简单的问题。我用冒泡排序代码在线查看,看起来我也在做同样的事情。这是我带有模板的完整 C++ 代码。但是输出有点奇怪! #include using namespace std; tem
我一直在尝试学习排序类的泛型实现,但收到此错误:“无法从类型 Comparator 中对非静态方法compare(T, T) 进行静态引用”(第 14 行) . 为什么我会收到此消息?我还没有声明我的
该程序创建一个名为 datafile.txt 的文件,并使用文本 I/O 将随机创建的 100 个整数写入该文件。我还实现了 bubbleSort 以升序对数字进行排序,但它没有对它们进行排序。另外,
这段代码可能看起来很糟糕,我是一个初学者程序,所以让我的代码更好的提示会有很大帮助。我想知道如何使 bubbleSort() 全局修改数组值?目前我在 main 中填充数组,它适用于搜索方法,但后来我
没有匹配函数来调用“bubbleSort”。我在同一个 .hpp 文件中有这两个函数。 template void bubbleSort(std::vector &vec){ T zacase
我更改了我的代码,但仍然无法弄清楚为什么它不会对数组进行排序...冒泡排序仅将所有元素在我的程序中向右移动一个位置,而不是对数组进行排序...我厌倦了 bsort 和 ssort,两者都做同样的事情1
我正在尝试为结构数组实现递归冒泡排序。但是,当我按员工姓名对数组进行排序时,它给出了错误的输出。我不知道我错过了什么。感谢您的帮助。 #include #include // GLOBAL VARIA
使用 Python 进行冒泡排序算法的示例该算法在两个方向上对列表的元素进行排序 def bubbleSort_UpDown(alist,ite): up=True d=0 f
这是我的程序 static void Main(string[] args) { int[] arrayToSort = new int[] { 5,4,9};
我正在研究对 array[n] 中的整数 [1,n] 的每个可能组合进行排序所需的遍数背后的数学原理。 例如,n = 3,则有 3! = 6 数字的可能排列: 1,2,3 - 1,3,2 - 2,1,
嘿,我对 Bubblesort 进行了运行时分析,我想问你是否有任何错误,因为我在某个时候不确定 这里是算法的摘录: boolean sorted = false; while(!so
我是一名优秀的程序员,十分优秀!