Skip to content

Commit

Permalink
imagem
Browse files Browse the repository at this point in the history
  • Loading branch information
lopespt committed Mar 2, 2021
1 parent fa454c3 commit 3b4e551
Show file tree
Hide file tree
Showing 7 changed files with 3,866 additions and 632 deletions.
21 changes: 21 additions & 0 deletions .qmake.stash
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,24 @@ QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_RANLIB = \
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_LINK = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_LINK_SHLIB = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++
QMAKE_MAC_SDK.macosx.platform_name = macosx
QMAKE_CXX.QT_COMPILER_STDCXX = 201402L
QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 10
QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 2
QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 0
QMAKE_CXX.COMPILER_MACROS = \
QT_COMPILER_STDCXX \
QMAKE_GCC_MAJOR_VERSION \
QMAKE_GCC_MINOR_VERSION \
QMAKE_GCC_PATCH_VERSION
QMAKE_CXX.INCDIRS = \
/usr/include/c++/10.2.0 \
/usr/include/c++/10.2.0/x86_64-pc-linux-gnu \
/usr/include/c++/10.2.0/backward \
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include \
/usr/local/include \
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed \
/usr/include
QMAKE_CXX.LIBDIRS = \
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0 \
/usr/lib \
/lib
20 changes: 0 additions & 20 deletions CMakeLists.txt~

This file was deleted.

3 changes: 2 additions & 1 deletion QtSortingAlgorithms.pro
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ SOURCES += BubbleSorter.cpp \
SortViewWidget.cpp \
TimerWidget.cpp \
vectoreditor.cpp \
VectorSorter.cpp
VectorSorter.cpp \
RadixSorter.cpp
RESOURCES += resources.qrc
3 changes: 1 addition & 2 deletions RadixSorter.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#include "RadixSorter.h"
#include <math.h>

RadixSorter::RadixSorter():VectorSorter()
RadixSorter::RadixSorter()
{
//test2
}

void RadixSorter::countingSort(QVector<int> &v, int digit){
Expand Down
4 changes: 2 additions & 2 deletions RadixSorter.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

class RadixSorter : public VectorSorter
{
Q_OBJECT
private:
void countingSort(QVector<int> &v, int digit);
public:
explicit RadixSorter();
RadixSorter();
~RadixSorter(){}
signals:

public slots:
Expand Down
4,445 changes: 3,839 additions & 606 deletions qrc_resources.cpp

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources.qrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<RCC>
<qresource prefix="/">
<file alias="logoFei">../../FEI/Graduacao/CC2621 - Algoritmos II/Teoria/Exercícios/Latex/Lista3-Structs/logoFei.jpg</file>
<file alias="logoFei">logo_FEI.png</file>
</qresource>
</RCC>

0 comments on commit 3b4e551

Please sign in to comment.